Save File Dialog - Show Method
Show as a modal dialog
Member of Save File Dialog (PRIM_APPL.ICommonDialogFileSave)
Parameters
Name | Type | Data Type | Description |
|---|---|---|---|
FormOwner | *Input (Optional) | The form to which this form belongs in a stack of modal forms | |
OKPressed | *Result (Optional) | Boolean | True if the OK button was pressed to close the dialog |
Details
Use the Show method to show the dialog.
Example
Showing the Dialog as part of an IF statement.
If the OK button was pressed the code inside the IF will be executed
If (#Dialog.Show)
* Save the file to the path
Endif