|

the software that grows
with you
| |
|
V32GetFile()
|
| Opens the Windows file open dialog as a
modal window. |
|
Syntax
|
| V32GetFile( [ cDrive ], [ cDir ], [ cMask
], [ cTitle ] ) |
|
Arguments
|
| [ cDrive ] is a character string
to represent drive letter without colons. Default is CurDrive().
[ cDir ] is a character string to point to directory where to
search. Do not preceed it with drive letter. ':\' will be automatically
prefixed before it. Default is CurDir().
[ cMask ] a character string to represent the filter to select
the files from. cMask can be set as to represent multiple type of files
delimited with semicolon ';'. Wildcard characters are allowed to
define the mask, e.g., '*.dbf;*.pdf;*.?xx'. Default is '*.*'.
[ cTitle ] character string to be placed in the title bar of the
file open dialog. Default is 'Select a File'
|
|
Returns
|
| cFileNameWithDrivePath |
|
Description
|
| |
|
Usage
|
| V32GetFile( 'd', 'Vouch32',
'*.bmp;*.pdf;*.txt', 'Select a File to be Opened' ) |
|
Tips
|
| |
|