Pavel Posted July 7, 2006 Posted July 7, 2006 (edited) How to create a filesave window that saves file with extension, if user in filename box types only name, without extension? I mean if i choose "Text Files(*.txt)" filetype, why extension not adds to the file? I think window support extension adding and other functions like default extension.. And be very nice if a window appears in center, and window don't show recent file list Can anyone help me? Edited July 7, 2006 by Pavel
marfdaman Posted July 7, 2006 Posted July 7, 2006 $file = FileSaveDialog("Title", @DesktopDir, "Text Files (*.txt)") If StringRight($file, 4) <> ".txt" Then $file &= ".txt" ;~ MsgBox(0, $file, $file) Alzo Don't take my pic to serious...~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~You Looked, but you did not see!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Pavel Posted July 8, 2006 Author Posted July 8, 2006 $file = FileSaveDialog("Title", @DesktopDir, "Text Files (*.txt)") If StringRight($file, 4) <> ".txt" Then $file &= ".txt" ;~ MsgBox(0, $file, $file) Thanks, but if I have a two filter types, for example .txt and .mp3 ?
marfdaman Posted July 8, 2006 Posted July 8, 2006 I don't know about that, srry Don't take my pic to serious...~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~You Looked, but you did not see!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Developers Jos Posted July 8, 2006 Developers Posted July 8, 2006 Thanks, but if I have a two filter types, for example .txt and .mp3 ?How would you ever know what to choose when the extension isn't typed or selected and you have a filter with multiple extension options?| SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
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