Tsukihime Posted May 16, 2011 Posted May 16, 2011 I am using the savefiledialog to prompt user to specify a filename Is there a way to make it so that the script checks if the user has typed in an extension or not? Kind of like how notepad appends a .txt if I don't include one, but if I type something like ".htm" it will ignore it. Or do I have to check myself and append the extension if necessary.
ahmet Posted May 16, 2011 Posted May 16, 2011 You can check yourself using this If StringRight($Save_path,4)<>".ini" Then $Save_path=$Save_path & ".ini" after user chooses path to which to save.
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