INFOBOX statement
Purpose: INFOBOX creates, displays, and operates an information box. The information box with vertical and horizontal scrollbars contains a caption, an O.K. push button and a message displayed using the Courier monospaced font.
Syntax: INFOBOX(Caption$, Information$) Parameters:
|
Example:
DIM Buffer$ FOR INTEGER i = 1 to 100 Buffer$ = Buffer$ & "Line No. " & STR$(i) & CRLF$ NEXT INFOBOX("Messages Posted...", Buffer$)