Name | POP3it_Folder_SelectWithDialog |
---|
Description | This function will display a folder chooser dialog. You can set the location to open the dialog to, as well as display a custom prompt message.
|
---|
Return Type | Text |
---|
Format | POP3it_Folder_SelectWithDialog ( StartPath ; Prompt ) |
---|
Optional Parameters | - StartPath
The Path to the Folder to display when the dialog first opens.
- Prompt
An optional Prompt or Message to display on the Dialog.
|
---|
Examples | - Example 1
Displays a folder chooser dialog, and returns the path of the chosen folder. POP3it_Folder_SelectWithDialog
- Example 2
Displays a folder chooser dialog starting at "images" directory on Windows. POP3it_Folder_SelectWithDialog( "c:\images" )
- Example 3
Displays a folder chooser dialog starting at "images" folder on Mac. POP3it_Folder_SelectWithDialog( "/Images/" )
- Example 4
Displays a folder chooser dialog with the prompt "Choose an export folder...". POP3it_Folder_SelectWithDialog( "" ; "Choose an export folder..." )
|
---|