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
FieldTypeR/WDefault
CaptionSTRINGRW
FileNameSTRINGRW
FilterSTRINGRW
FilterIndexINTEGERRW1
InitialDirSTRINGRW

QSaveDialog Methods
MethodTypeDescriptionParams
ExecuteFUNCTIONReturns TRUE or FALSE0


QSaveDialog Examples
  '-- Simple demo
  DIM SaveDialog AS QOpenDialog

  IF SaveDialog.Execute THEN
    ShowMessage "You want to save as "+SaveDialog.FileName
  END IF

Prev Component Contents Next Component