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

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.
 
J

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?

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

Regards
Jordi
 
J

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() ?
 
H

Harsha

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.
 
L

Larre

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top