Appendix A: QSAVEDIALOG
Rapid-Q Documentation by William Yu (c)1999 |
Appendix A: QSAVEDIALOG |
|
QSAVEDIALOG Component
QSaveDialog displays a Save As dialog box for saving files.
QSaveDialog Properties
Field | Type | R/W | Default |
|
|
|
|
Caption | STRING | RW | |
FileName | STRING | RW | |
Filter | STRING | RW | |
FilterIndex | INTEGER | RW | 1 |
InitialDir | STRING | RW | |
QSaveDialog Methods
Method | Type | Description | Params |
|
|
|
|
Execute | FUNCTION | Returns TRUE or FALSE | 0 |
QSaveDialog Examples
'-- Simple demo
DIM SaveDialog AS QOpenDialog
IF SaveDialog.Execute THEN
ShowMessage "You want to save as "+SaveDialog.FileName
END IF
|
|