Quote:
Originally Posted by tcgoh
I tried SaveDialog but the filename field is emty. I wanted filename field to be fill up w/o letting the user select.
|
To preselect a filename in the savedialog you have to define the file property of the savedialog before showing it, e.g.:
Code:
SaveDialog1.File = AppPath & "\test.txt"
SaveDialog1.Show
specci48
Edit: added a very simple copy sample...