I used to use an expensive programmer's editor called CodeWrite ($400) to prepare WinBatch scripts. Your Winbatch Studio is almost comparable, so you deserve a big pat on the back. There are two problems which, at least I, consider noticable, however.
1) WB Studio, once opened, does not accept files via drag'n drop. Sometimes I like to look at old scripts and documentation that aren't part of the project. The easiest way to open these files is by dropping them on the programmer's editor.
Second, every text editor I've ever seen accepts drag'n drop. Even Windows Notepad.
Third, if WB Studio is written in at least "C", implementing this feature should be very easy.
2) WB Studio seems to mark, at least, syntax errors with ">>". While this could be useful, I'm afraid I'm too old and set in my ways to like it. Can I shut this feature off?
>> :NoComment
>> >>
if StrLen(ScannedLine)>2
>>>> if ChekScan
>>>> >> ReadLine=ScannedLine
>>>> >> gosub PScan3
>>>> endif
>>>> FileWrite(OutHandle,ScannedLine)
endif
>> >> goto NewLine
I take it StrLen() is no longer a function. (That's good 'cause it should have been Len.) The rest of the routine is also marked 'cause execution will not reach these statements with a syntax error in the first statement. I guess this has merit. If only I could shut this feature on and off!
Thanks Very Much!
Robert