create save dialog box.
-
In my project I need to write text to file. For that I need to display the Save dialog and there user should be able to create folder and enter file name to save the file in that location. How can I do? Actually I need to display the Save dialog on click to One command button.
-
In my project I need to write text to file. For that I need to display the Save dialog and there user should be able to create folder and enter file name to save the file in that location. How can I do? Actually I need to display the Save dialog on click to One command button.
When you show save dialog
CFileDialog m(0); m.DoModal();
you can check return value of Domodal and then use of GetFileName();,user can make folder in this dialog. -
In my project I need to write text to file. For that I need to display the Save dialog and there user should be able to create folder and enter file name to save the file in that location. How can I do? Actually I need to display the Save dialog on click to One command button.