|
  
flush
Format: flush( buttons, values, title, fill,
envelope )
Arguments: (int) buttons Optional code
indicating the type of buttons displayed:
BTN_DEFAULT = OK/Cancel or
Back/Next/Cancel (default)
BTN_YESNOCANCEL = Yes/No/Cancel or
Back/Yes/No/Cancel
BTN_NONE = No buttons
other = see dialog
[any] values Optional list of default values for each
input field; default = null
(text) title Optional window title;
default = ""
(text) fill Optional character used to define input
fields; default = "^"
(text) envelope Optional name of the file containing
the HTML form envelope (Include only the file name, not the full
path. The file must reside in the same directory as the
application file or in the Envelopes directory.)
Returns: [any] Result of calling dialog
using the HTML output buffer contents as a template
Description: Sends the contents of the HTML output
buffer to the user's Web browser
Examples: print("Hello
"); = puts Hello in
the output buffer
print("world"); = appends
world to the output buffer
flush; = diaplays Hello World and clears the output
buffer
See Also: print, dialog
|