How do I make sure SaveAs Dialog return a filename with the extension?
For Example:
'Test' (.txt) return 'test.txt'
But:
'Test 1.0' (.txt) return 'Test 1.0' (Should be 'Test 1.0.txt')
Possible solution: I can manually check if there is a '.txt' at the end, but if there are two extension types (.txt, .doc), how do I know which one the user selected?
Thank you!