getOpenFileName() Problem
- Posted by doncole2009 Jul 22, 2009
- 838 views
Hello All,
The docs for getOpenFileName say:
filename = getOpenFileName( theWindow, -- parent window\\ "", -- no default name LINE 2\\ {"Text File", "*.TXT"}) -- text files\\ "All Files", "*.*" } ) -- everything else\\
When I run this the folder where the file is located opens and only the text files show.
if I change to:
filename = getOpenFileName( theWindow, -- parent window "C:\\", -- no default name LINE 2 {"Text File", "*.TXT"}) -- text files "All Files", "*.*" } ) -- everything else The c: folder opens but all files are shown. None filtered. Don Cole