QPR Knowledge Base 2017.1

FileSaveDialog

FileSaveDialog

Previous topic Next topic No directory for this topic  

FileSaveDialog

Previous topic Next topic Topic directory requires JavaScript Mail us feedback on this topic!  

Revision history:

Introduced in QPR 7.4.1

 

The FileSaveDialog command displays the standard dialog for saving files and returns the selected filename with the full path. Dialog's title, file extension filters and the initial folder can be supplied as parameters.

 

Synopsis:

 

PGApplication.FileSaveDialog(Title, DefaultExt, Filter, InitialDir, out Filename)

 

Parameters:

 

Title: String. Title displayed for the dialog.

DefaultExt: String. File extension used by default in the dialog.

Filter: String. Filter for what file types are shown.

InitialDir: String. Folder which is shown by default when the dialog is opened.

out Filename: Variant for storing the returned filename string. The full path is included.

 

Required Rights:

 

None.

 

Return Values:

Below are listed the return values that this function can return:

 

RV_SUCCESS

RV_APPLICATION_QUIT_CALLED

RV_CANCELLED

 

Example Procedure:

 

iResult = PGApplication.FileSaveDialog("FileSaveDialog", "txt", "Text files (*.txt)|*.TXT", "C:\", sFileName)