pointm.cpp
来自「vc数据采集程序,有曲线现实和数据显示以及采集卡设置」· C++ 代码 · 共 45 行
CPP
45 行
// Pointm.cpp : implementation file
//
#include "stdafx.h"
#include "HK_PCI812F_VC.h"
#include "Pointm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CPointm dialog
CPointm::CPointm(CWnd* pParent /*=NULL*/)
: CDialog(CPointm::IDD, pParent)
{
//{{AFX_DATA_INIT(CPointm)
m_Vpointm =32000;
//}}AFX_DATA_INIT
}
void CPointm::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CPointm)
DDX_Text(pDX, IDC_POINT, m_Vpointm);
DDV_MinMaxInt(pDX, m_Vpointm, 0, 100000);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CPointm, CDialog)
//{{AFX_MSG_MAP(CPointm)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CPointm message handlers
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?