Prehľad
Nástroje obsahu
TEXT %HI_FileDialog( BOOL in bOpen, TEXT in strInitFileName, TEXT in strTitle, TEXT in strStartPath, TEXT in strExtension )
bOpen | @True - the dialog box is used for opening a file. @False - the dialog is used for saving file. |
strInitFileName | Initial file name (or mask). |
strTitle | Dialog box title. |
strStartPath | Starting directory. |
strExtension | Extension. |
TEXT _fName _fName := %HI_FileDialog(@TRUE, "*.xml", "Open XML File", "c:\windows", "XML Document") IF _fName\VLD THEN IF _fName # "" THEN ; user selected the file _fName ENDIF
Pridať komentár