M
MuZZy
Hi,
I' m trying to use OpenFileDialog for my PDA application, like below:
OpenFileDialog ofd = new OpenFileDialog();
ofd.InitialDirectory = @"\Windows";
if (ofd.ShowDialog() != DialogResult.OK ) return;
OpenDocument(ofd.FileName);
When dialog opens, it always points to "All Folders" which in fact shows contents of My Documents
folder in Main memory, regardless of what InitialDirectory i pre-set.
And it doesn't allow me to browse anything else
Is there a way to browse the whole file system (including flash memory) using this class, or i
should use some other component? What would you advise me then?
Thank you,
Andrey
I' m trying to use OpenFileDialog for my PDA application, like below:
OpenFileDialog ofd = new OpenFileDialog();
ofd.InitialDirectory = @"\Windows";
if (ofd.ShowDialog() != DialogResult.OK ) return;
OpenDocument(ofd.FileName);
When dialog opens, it always points to "All Folders" which in fact shows contents of My Documents
folder in Main memory, regardless of what InitialDirectory i pre-set.
And it doesn't allow me to browse anything else
Is there a way to browse the whole file system (including flash memory) using this class, or i
should use some other component? What would you advise me then?
Thank you,
Andrey