Re: getOpenFileName()
- Posted by Greg Haberek <ghaberek at gmai?.co?> Jan 21, 2008
- 567 views
don cole wrote: > > VOID=getOpenFileName() > > Always open in folder "Documents". > > How can I change this? You can pass a path to "file" parameter of the function:
VOID = getOpenFileName( 0, "C:\\WINDOWS\\system32\\", {"All Files", "*.*"} )
You *MUST* end the path in a backslash, else Windows will fill in the last part as the filename to choose. HTH, -Greg