HTBasic Help
×
Menu
Index
Disp
 
Prints String directly on HTBasic’s display line. The C++ function declaration (or prototype) is:
void Disp(char * Msg,BOOL opt=1);                
 
The example of the command in operation is:
 
Disp("This is the HTBasic DISP line",(1))
Disp("This is the HTBasic message line",(0))
 
Where a non zero value sends output to the DISP line. A zero value sneds the output to the message line.