Sandy,
.tBasic script are executed by thinBasic.exe that is a native Win32 GUI application
.tBasicc script are executed by thinBasicc.exe that is a native Win32 Console application (when executed, an automatic console window is opened even if you do not need it)
In both cases, to use console commands, you need to add USES "Console" statement inside scripts.
The real big difference between the 2 executable is that thinBasicc.exe can handle standard input/output.
It was mainly created in order to be able to use thinBasic script as server side script in web servers. More or less like PHP scripts.
My suggestion is to always use .tBasic scripts and not .tbasicc unless you really need it.
To use console commands just add USES "Console" in your script.
Eros
Bookmarks