Click here to Skip to main content
15,886,724 members
Articles / Mobile Apps

Registry Editor for Windows CE

Rate me:
Please Sign up or sign in to vote.
4.78/5 (22 votes)
4 Nov 2002CPOL1 min read 293.1K   5.6K   55  
A Registry editor for a Windows CE device.
// DlgCreateKey.cpp : implementation file
//

#include "stdafx.h"
#include "redit.h"
#include "DlgCreateKey.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDlgCreateKey dialog


CDlgCreateKey::CDlgCreateKey(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgCreateKey::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgCreateKey)
	m_strKeyName = _T("");
	//}}AFX_DATA_INIT
}


void CDlgCreateKey::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgCreateKey)
	DDX_Text(pDX, IDC_EDIT_KEYNAME, m_strKeyName);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDlgCreateKey, CDialog)
	//{{AFX_MSG_MAP(CDlgCreateKey)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgCreateKey message handlers

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
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions