updateid.cpp

来自「GPRS协议解析示例。该示例演示里使用GPRS控件实现客户端程序向车载GPS终端」· C++ 代码 · 共 45 行

CPP
45
字号
// UpdateID.cpp : implementation file
//

#include "stdafx.h"
#include "测试程序.h"
#include "UpdateID.h"

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

/////////////////////////////////////////////////////////////////////////////
// CUpdateID dialog


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


void CUpdateID::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CUpdateID)
	DDX_Text(pDX, IDC_ID, m_ID);
	DDV_MaxChars(pDX, m_ID, 11);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CUpdateID message handlers

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?