Tsukihime 0 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. Share this post Link to post Share on other sites
ahmet 8 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. Share this post Link to post Share on other sites