I can confirm this behavior. Try the simple code below:
Hit ENTER and watch as the auto-formatter tosses out the messed up line of junk:
The end-user fix here is for the user to make certain that they use a semi-colon after the TAB, but the IDE isn't catching that error (usually it auto inserts the semicolons into a PRINT statement as needed). Something is just slightly off between the TAB and the auto-semicolon insertion routine.
Code: (Select All)
? tab(4) using "###"; foo
Hit ENTER and watch as the auto-formatter tosses out the messed up line of junk:
Code: (Select All)
Print Tab(4)using Using "###"; foo
The end-user fix here is for the user to make certain that they use a semi-colon after the TAB, but the IDE isn't catching that error (usually it auto inserts the semicolons into a PRINT statement as needed). Something is just slightly off between the TAB and the auto-semicolon insertion routine.