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

📄 pointm.cpp

📁 vc数据采集程序,有曲线现实和数据显示以及采集卡设置
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -