Please enable JavaScript to view this site.

QPR Knowledge Base 2023.1

  •      
  • Navigation: Developer's Guide > QPR API > The Object Model > QPR Metrics > SCApplication Commands

    FileSaveDialog

    Scroll Prev Top Next More

    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:

     

    SCApplication.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_CANCELLED

    RV_APPLICATION_QUIT_CALLED

    RV_NOT_AUTHENTICATED

    RV_NOT_CONNECTED_TO_SERVER

     

    Example Procedure:

     

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