Xbasic
UI_DLG_SHOW Function
Syntax
V UI_DLG_SHOW(C title)
Arguments
- title
The name of the dialog box.
Description
Show a dialog.
Discussion
The UI_DLG_SHOW()displays an invisible dialog box.
This example creates an invisible dialog with UI_DLG_CREATE(), then displays it with UI_DLG_SHOW().
ui_dlg_create("Invisible Xdialog", <<%dlg%
<20,3Click Here>
%dlg%)
ui_dlg_show("Invisible Xdialog")Limitations
Desktop applications only.
See Also