Click here to Skip to main content
15,892,059 members
Articles / Programming Languages / C#

Windows Mobile Programming Tricks on the .NET Compact Framework: Part 1

Rate me:
Please Sign up or sign in to vote.
4.64/5 (8 votes)
23 Feb 2011CPOL4 min read 41.1K   668   24  
The article provides and describes some useful code snippets for Windows Mobile/CE developers.
using System;
using System.Collections.Generic;
using System.Text;

namespace BeeMobile
{
    public enum Folders
    {
        Programs = 2,           // \Windows\Start Menu\Programs
        Personal = 5,           // \My Documents
        Startup = 7,            // \Windows\StartUp
        Startmenu = 0x0B,       // \Windows\Start Menu
        Fonts = 0x14,           // \Windows\Fonts
        Favorites = 0x16,       // \Windows\Favorites
        Program_Files = 0x26    // \Program Files
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
G&M Dynamics, s.r.o.
Slovakia Slovakia
I work for Bee Mobile.

Web site: http://beemobile4.net
Facebook site: http://facebook.com/BeeMobile
YouTube Channel: http://youtube.com/beemobile4dotnet

Comments and Discussions