I can't remeber right now how this is done. Is it by calling cGetFile() and passing some flags?
TIA.
FWH 11.08/FWH 19.12
BCC5.82/BCC7.3
xHarbour/Harbour
BCC5.82/BCC7.3
xHarbour/Harbour
I can't remeber right now how this is done. Is it by calling cGetFile() and passing some flags?
TIA.
hua wrote:I can't remeber right now how this is done. Is it by calling cGetFile() and passing some flags?
#include "FiveWin.ch"
Function Main()
Local cNewName, ;
cMask := "Databases (*.dbf)|*.dbf|All files (*.*)|*.*", ;
cTitle := "Select the database", ;
cFolder := "c:\fwh\samples", ;
cFilename := "customer.dbf", ;
lSave := .T.
cNewName := cGetFile( cFilter, cTitle,, cFolder, lSave,,, cFileName )
?cNewName
Return NilThank you Manuel.