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:

  • Caption$ String literal or variable containing text to be placed in titlebar of INFOBOX window
  • Information$ String literal or variable that containing the message to be displayed. Information$ must be less than 32KB.

Example:


 DIM Buffer$
 FOR INTEGER i = 1 to 100
  Buffer$ = Buffer$ & "Line No. " & STR$(i) & CRLF$
 NEXT
 INFOBOX("Messages Posted...", Buffer$)