How to browse through a list of files in windows mobile.

  • Thread starter Thread starter Harsha
  • Start date Start date
H

Harsha

I want to browse through the list of files in windows mobile. And I want the
path of the selected folder. As there is no option for filebrowsedialog, how
to do it windows mobile compact framework using c#.

Please let me know if I am not clear.

Thnaks and Regards,
Harsha.
 
I want to browse through the list of files in windows mobile. And I want the
path of the selected folder. As there is no option for filebrowsedialog, how
to do it windows mobile compact framework using c#.

Please let me know if I am not clear.

Thnaks and Regards,
Harsha.

Have you tried OpenFileDialog?

OpenFileDialog fd = new OpenFileDialog();
fd.ShowDialog();
String file = fd.FileName;

Regards
Jordi
 
I want to browse through the list of files in windows mobile. And I want the
path of the selected folder. As there is no option for filebrowsedialog, how
to do it windows mobile compact framework using c#.

Please let me know if I am not clear.

Thnaks and Regards,
Harsha.

Have you tried OpenFileDialog() ?
 
Ya i tried. But it won't show folder in my memory card. It will show only
folders in phone memory. I want to see all folders including one which are in
memory card.

Thanks and regards,
Harsha.
 
I have the same problem, anyone have any answers? Do I have to write my own
filebrowser to be able to find files on the memorycard?

Best regards, Larre
 
Back
Top