QPR Knowledge Base 2017.1

FileOpenDialog

FileOpenDialog

Previous topic Next topic No directory for this topic  

FileOpenDialog

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

Revision history:

Introduced in QPR 7.4.1

 

The FileOpenDialog command displays the standard dialog for opening 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.FileOpenDialog(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.FileOpenDialog("FileOpenDialog", "txt", "Text files (*.txt)|*.TXT", "C:\", sFileName)