Print: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
Line 27: Line 27:


[[Category:Language Reference]]
[[Category:Language Reference]]
[[Category:Messages]]

Revision as of 19:51, 14 September 2012

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 may not see the output from this statement if you are using forms, since the forms may cover the output window.

Print output is formatted as Html: any valid Html expression may be used, including images and links.

Example

Rem Print Example
'Print writes text to the output window
Print "Hello World!"
Print
Print "The time is", Now

Output

Hello World!
The time is   8/18/1998 10:52:44 PM