KoenPiller
Programmer
Hi,
I am puzzled with the Active X msComDlg Common Dialog. Is does not save.
I have this form with a btnSave. In the Clickprocedure following code:
It shows the ms common dialog window, you can select, an other directory, but nothing is saved.
When I than activate the Windows search I find that myFile.txt is listed in the directory I had selected however as an Explorer shortcut and indeed physically it is not in the directory I would have expect it to be.
Obviously I am doing something wrong, any idea where what to correct?
Thanks
Koen
I am puzzled with the Active X msComDlg Common Dialog. Is does not save.
I have this form with a btnSave. In the Clickprocedure following code:
Code:
WITH ThisForm
.oleCommSelect.FileName = “myFile.txt”
.oleCommSelect.Defaultext = “txt”
.oleCommSelect.ShowSave()
ENDWITH
When I than activate the Windows search I find that myFile.txt is listed in the directory I had selected however as an Explorer shortcut and indeed physically it is not in the directory I would have expect it to be.
Obviously I am doing something wrong, any idea where what to correct?
Thanks
Koen