Log in

View Full Version : SaveFileDialog control


albertkhor
10-17-2005, 03:31 AM
the Save File Dialog box always display the Main memory (My Documents folder). How to change it become the SD Card ( or other external storage) as default?

Strider
10-17-2005, 09:27 AM
SaveFileDialog1.InitialDirectory = "\Windows"
SaveFileDialog1.ShowDialog()

albertkhor
10-17-2005, 11:02 AM
nothing different on save file dialog.

the Location still display the Main memory as default!

Strider
10-17-2005, 03:57 PM
SaveFileDialog1.InitialDirectory = "\SD Card\"
SaveFileDialog1.ShowDialog()

SaveFileDialog1.InitialDirectory = "\My Documents\"
SaveFileDialog1.ShowDialog()

surely one of them will work

Strider
10-19-2005, 09:32 AM
I'd recommend you go ask these guys http://www.opennetcf.org/forums/

albertkhor
10-20-2005, 03:04 AM
thanks for reply!

i know the opennetcf forum, but most of the solution they give need to use the oppennetcf library. i hope that can solve this problem without using other library.