Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / C++

Using CodeProject - A Day In the Life of an Application - Part 3 of 5

Rate me:
Please Sign up or sign in to vote.
4.63/5 (20 votes)
27 Jan 2007CPOL14 min read 43.3K   436   17  
The right way to code using CodeProject for occasional support
#pragma once

// view IDs 
#define IDC_GRID_CTRL              49000
#define IDC_PANE0_SECONDARY_VIEW   49001
#define IDC_PANE0_PRIMARY_VIEW     49002
#define IDC_PANE1_PRIMARY_VIEW     49003

// statusbar pane IDs
#define ID_STATUSPANE_TIME         49100
#define ID_STATUSPANE_LONGUPDATE   49101
#define ID_STATUSPANE_SHORTUPDATE  49102
#define ID_STATUSPANE_LONGRUNNING  49103
#define ID_STATUSPANE_SHORTRUNNING 49104

// timer IDs for the timer thread
#define TIMER_LONG                 1
#define TIMER_SHORT                2
#define TIMER_ELAPSED              3
#define TIMER_DATETIME             4

//timer messages
#define UDM_TIMER_LONG            WM_APP+ 1
#define UDM_TIMER_SHORT           WM_APP+ 2
#define UDM_TIMER_ELAPSED         WM_APP+ 3
#define UDM_TIMER_DATETIME        WM_APP+ 4
#define UDM_LONG_TASK_DONE        WM_APP+ 5
#define UDM_SHORT_TASK_DONE       WM_APP+ 6

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
Software Developer (Senior) Paddedwall Software
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.

My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Comments and Discussions