ending Posted July 5, 2006 Posted July 5, 2006 Possible to use the Window's API file save/open dialog boxes and just use it to store the filepath to a variable? So you could then take that path variable and use FileWrite or whatever.
Valuater Posted July 5, 2006 Posted July 5, 2006 straight from help $var = FileOpenDialog("Choose a file", "C:\Windows\", "Images (*.jpg;*.bmp)", 1 + 4 ) If @error Then MsgBox(4096,"","No File(s) chosen") Else $var = StringReplace($var, "|", @CRLF) MsgBox(4096,"","You chose " & $var) EndIf then you can use fileopen() to read or write 8)
ending Posted July 5, 2006 Author Posted July 5, 2006 Doh! I was looking in the Messages and Dialogs tree. Thanks!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now