PRINT [expressionA[, expressionB[, expressionC[, ...]]]]
Description
PRINT writes text to the Output window. PRINT writes up to 20 comma-delimited expressions, separating each with a tab and appending a carriage return. When used without expressions, PRINT, writes a blank line to the Output window.
You will not see the output from this statement if you are using forms, since the forms cover the Output window completely.
Example
REM PRINT Example
'PRINT writes text to the output window
PRINT "Hello World!"
PRINT "The time is", NOW
Output
Hello World!
The time is 8/18/1998 10:52:44 PM
Related Items