Hello!
I have several Open File dialogs and a Save File dialog in my app. For the Save File dialog, I wanted to make the "My Documents" as the initial directory. How do I do that? I use the statement below:
saveDlg
.InitialDirectory =Environment.SpecialFolder.MyDocuments.ToString();
but somehow this will not open the My Documents directory since the Environment.SpecialFolder.MyDocuments.ToString will return this string "Personal." So, the dialog would open the initial directory I set for my Open File dialog, why is that?
Please help!
Thanks!