{NOCHILDREN}
Syntax
{NOCHILDREN}
Description
By default when Xdialog window opens another Xdialog (for example a button on dialog1 causes dialog2 to open), the second dialog is a "child" of the first dialog and when the first dialog closes, so will the second. The {nochildren} command allows you to open new dialogs from a dialog without them being children of the first dialog.
Supported By
Alpha Five Version 7 and Above
Limitations
Desktop applications only
Examples
|
ui_modeless_dlg_box("Dialog1",<<%dlg% if a_dlg_button = "close" then 'Move this dialog out of the way so that the next dialog that opens does not obscure it. ui_dlg_move("dialog1",1,1) if a_dlg_button = "close" then %code%) '------------------------------------- function show_dialog2 as v ()
ui_modeless_dlg_box("Dialog2",<<%dlg% if a_dlg_button = "close" then %code%) end function |
See Also