.NET
ud1107.txt
Associated article: Undocumented Corner
Tags: .NET C/C++
Published source code accompanying the column by George Shepherd and Scot Wingo in which they examine Visual C++ for Windows CE, a VC++ 5.0 add-in, includes its own unique version of MFC--a small footprint system called "Mini MFC."
Undocumented Corner
by George Shepherd and Scot Wingo
Listing One
class CCommandBar {
protected:
HWND m_hWndParent;
CWnd* m_pParentWnd;
HINSTANCE m_hInst;
int m_iCBHeight;
public:
HWND m_hCommandBar;
HMENU m_hMenu;
HWND m_hComboBox;
CCommandBar();
~CCommandBar();
HWND Create( HWND ...


