Click here to Skip to main content
15,885,244 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 289K   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

 
GeneralRe: System imagelists Pin
João Paulo Figueira30-Mar-03 11:07
professionalJoão Paulo Figueira30-Mar-03 11:07 
GeneralRe: System imagelists Pin
Amit Dey31-Mar-03 1:24
Amit Dey31-Mar-03 1:24 
GeneralRe: System imagelists Pin
João Paulo Figueira31-Mar-03 6:26
professionalJoão Paulo Figueira31-Mar-03 6:26 
GeneralRe: System imagelists Pin
Amit Dey31-Mar-03 8:06
Amit Dey31-Mar-03 8:06 
GeneralRe: System imagelists Pin
João Paulo Figueira31-Mar-03 10:05
professionalJoão Paulo Figueira31-Mar-03 10:05 
GeneralArticle updated Pin
João Paulo Figueira14-May-03 4:41
professionalJoão Paulo Figueira14-May-03 4:41 
GeneralWow... Great article! Pin
Daniel Strigl27-Mar-03 22:38
Daniel Strigl27-Mar-03 22:38 
GeneralRe: Wow... Great article! Pin
João Paulo Figueira28-Mar-03 0:16
professionalJoão Paulo Figueira28-Mar-03 0:16 
GeneralRe: Wow... Great article! Pin
Daniel Strigl28-Mar-03 0:56
Daniel Strigl28-Mar-03 0:56 
GeneralArticle updated Pin
João Paulo Figueira14-May-03 4:46
professionalJoão Paulo Figueira14-May-03 4:46 
GeneralRe: Article updated Pin
Anonymous14-May-03 4:58
Anonymous14-May-03 4:58 
GeneralRe: Article updated Pin
Daniel Strigl16-May-03 5:42
Daniel Strigl16-May-03 5:42 

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.