PrintString - Examples

Example 1

A two line piece of script which first prints out what it is going to do and then prints the contents of LMS_DEBUG variable , displaying the Cancel dialog in the last instance in case the content is too long.

PrintString("Now printing report of LMS communication… \n", false,false,false)

PrintString(LMS_DEBUG,false, true, false)

Note:
The first string includes "\n". This is a special "control character". It is not printed but instead tells the printer to start a new line. You could also use \t if you want to insert a tab in the string.

Close