Click here to Skip to main content
15,879,535 members
Articles / Mobile Apps / Windows Mobile

A File Open Dialog for the PocketPC 2002

Rate me:
Please Sign up or sign in to vote.
4.86/5 (34 votes)
26 Jan 2004CPOL3 min read 287.4K   457   56   113
An implementation of a full-browsing file open dialog.

Sample screenshot

Introduction

On the PocketPC, the File Open dialog is not very versatile. In fact, you are limited to a small number of directories, which may be too limiting for your own purposes. I started to think about a possible solution for this problem after reading a post in the Mobile / Embedded forum, where a reader complains about the limitations of CFileDialog.

This article describes a solution for this problem, by implementing a more advanced File Open dialog.

CFileOpenDlg

The dialog is implemented in the CFileOpenDlg class in the demo application. Its usage is very straightforward, as you can see from the sample below:

void CChildView::OnFileOpen() 
{
    CFileOpenDlg    dlg;

    if(IDOK == dlg.DoModal())
    {
        CString    strFullPath(dlg.GetPath());

        strFullPath += dlg.GetFileName();

        MessageBox(strFullPath);
    }
}

In order to get the full path name, you have to append the path and the file name, as reported by GetPath() and GetFileName().

File filters are set through the SetFilter method. By default, the dialog uses SetFilter("*"), so all files are displayed. Please note that this filter will only affect file browsing, not directory browsing.

Using The Class

Unfortunately, this class is not completely encapsulated because it needs some resources, namely the bitmaps for the list header and the dialog itself. When porting this code to your application, some cutting and pasting will be necessary. Apart from that, you will need the CExDialog and CExDlgEngine classes in order to be able to print a header in the dialog. This code is heavily based on prior art, which you can find in this article: How can I create a dialog title like in Control Panel property pages?

Limitations and Future Improvements

There are a number of limitations that will be addressed in future updates:

  • On-demand loading of the directory tree. The loading is now made in just one step and, if you have a complex directory tree, this will show in a slower operation. By loading the tree in an on-demand fashion, both start-up time and memory consumption will be greatly reduced.
  • File sorting. There is no provision for sorting files in this dialog.

Release History

26 January 2004

Third release in CodeProject with the following updates:

  • Folder tree is loaded on demand.
  • Folders use the system image list icons.
  • File list now supports sorting (ascending and descending) on any column.
  • The sorted column displays a light grey background and the header shows an arrow reflecting the sort direction.

15 May 2003

Removed references to spurious #includes and symbols.

14 May 2003

Second release in CodeProject with the following updates:

  • The device name is reported in the tree view.
  • The file list now supports file icons.
  • The OK and Cancel buttons were replaced by toolbar buttons (the cancel button is not very nice, but hey - I'm not a graphics designer)
  • Views can be switched between split view, tree view and list view.
  • You can move the split between tree and list by clicking and dragging.

27 Mar 2003

First release in CodeProject.

Thank You

Amit Dey provided the code and idea for using the system image list. Also, he provided guidance when I completely goofed the first time I tried it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Frotcom International
Portugal Portugal
I work on R&D for Frotcom International, a company that develops web-based fleet management solutions.

Comments and Discussions

 
Questionhow to run .ppt file on smartdevice application Pin
yrishi25-Sep-08 0:38
yrishi25-Sep-08 0:38 
GeneralMak it work across a LAN Pin
jima2z6-Jan-07 4:22
jima2z6-Jan-07 4:22 
Generalshell open command Pin
M i s t e r L i s t e r17-Oct-06 18:02
M i s t e r L i s t e r17-Oct-06 18:02 
GeneralCode ported to PPC2003 and WM5 under VS2005 [modified] Pin
Vince Ricci10-Aug-06 7:38
Vince Ricci10-Aug-06 7:38 
GeneralRe: Code ported to PPC2003 and WM5 under VS2005 Pin
JasonHo24-Aug-06 1:32
JasonHo24-Aug-06 1:32 
QuestionRe: Code ported to PPC2003 and WM5 under VS2005 Pin
goddamnelectric9-Jan-07 23:06
goddamnelectric9-Jan-07 23:06 
GeneralRe: Code ported to PPC2003 and WM5 under VS2005 Pin
noob_the_penguin7-Jun-07 1:32
noob_the_penguin7-Jun-07 1:32 
GeneralRe: Code ported to PPC2003 and WM5 under VS2005 Pin
Vince Ricci7-Jun-07 11:31
Vince Ricci7-Jun-07 11:31 
GeneralFileOpen2: A Command Line Version [modified] Pin
NaviGer27-May-06 0:23
NaviGer27-May-06 0:23 
Questionanyone ported this to VS 2005? Pin
User 50600321-Mar-06 17:12
User 50600321-Mar-06 17:12 
Hi!
Has anyone perhaps ported this project to Visual Studio 2005? Or is there perhaps a dll-file available to use this? I have many problems porting this (I think the most problem is the use of the STL wich (in this case) is developed for embedded VC++)

greetings
Maik

modified 29-Nov-20 21:01pm.

AnswerRe: anyone ported this to VS 2005? Pin
Vince Ricci10-Aug-06 7:39
Vince Ricci10-Aug-06 7:39 
QuestionManaged Code Equivalent of this? Pin
Vasudevan Deepak Kumar14-Mar-06 4:10
Vasudevan Deepak Kumar14-Mar-06 4:10 
AnswerRe: Managed Code Equivalent of this? Pin
João Paulo Figueira14-Mar-06 4:16
professionalJoão Paulo Figueira14-Mar-06 4:16 
GeneralSaving Bitmaps in WinCE Pin
Justin Clayden12-Dec-05 16:01
Justin Clayden12-Dec-05 16:01 
QuestionCan I use that on my (GLP) project? Pin
Member 67856217-Oct-05 9:10
Member 67856217-Oct-05 9:10 
AnswerRe: Can I use that on my (GLP) project? Pin
João Paulo Figueira17-Oct-05 11:18
professionalJoão Paulo Figueira17-Oct-05 11:18 
GeneralRe: Can I use that on my (GLP) project? Pin
franprak6-Mar-07 17:35
franprak6-Mar-07 17:35 
GeneralRe: Can I use that on my (GLP) project? Pin
João Paulo Figueira6-Mar-07 22:59
professionalJoão Paulo Figueira6-Mar-07 22:59 
QuestionCan not found Deque.h Pin
lvguangchuan6-Oct-05 11:21
lvguangchuan6-Oct-05 11:21 
AnswerRe: Can not found Deque.h Pin
João Paulo Figueira6-Oct-05 12:18
professionalJoão Paulo Figueira6-Oct-05 12:18 
GeneralRe: Can not found Deque.h Pin
NaviGer21-May-06 5:48
NaviGer21-May-06 5:48 
GeneralRe: Can not found Deque.h Pin
NaviGer21-May-06 5:52
NaviGer21-May-06 5:52 
GeneralRe: Can not found Deque.h Pin
João Paulo Figueira21-May-06 6:16
professionalJoão Paulo Figueira21-May-06 6:16 
GeneralRe: Can not found Deque.h [modified] Pin
Andy Byron28-Sep-06 7:14
Andy Byron28-Sep-06 7:14 
GeneralSmall improvements Pin
yarus2318-Aug-05 5:53
yarus2318-Aug-05 5:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.