⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dialnum.cpp

📁 Modem 通信的完整例子
💻 CPP
字号:
// dialnum.cpp : implementation file
//

#include "stdafx.h"
#include "modem16.h"
#include "dialnum.h"

#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// DialNum dialog


DialNum::DialNum(CWnd* pParent /*=NULL*/)
	: CDialog(DialNum::IDD, pParent)
{
	//{{AFX_DATA_INIT(DialNum)
	m_phonenum = "";
	//}}AFX_DATA_INIT
}

void DialNum::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(DialNum)
	DDX_Text(pDX, IDC_PHONENUMBER, m_phonenum);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(DialNum, CDialog)
	//{{AFX_MSG_MAP(DialNum)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()


/////////////////////////////////////////////////////////////////////////////
// DialNum message handlers

BOOL DialNum::OnInitDialog()
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	return TRUE;  // return TRUE  unless you set the focus to a control
}

⌨️ 快捷键说明

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