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

📄 test3dlg.h

📁 我用VC编的一个小小的串口应用程序,里面用到了一个库CComm。挺简单的。
💻 H
字号:
// test3Dlg.h : header file
//

#if !defined(AFX_TEST3DLG_H__7DBA92F5_1C09_4D90_BF71_C6106CDE6DEA__INCLUDED_)
#define AFX_TEST3DLG_H__7DBA92F5_1C09_4D90_BF71_C6106CDE6DEA__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


#include "cn_comm.h"
#include <exception>
#include <cstdlib>
/////////////////////////////////////////////////////////////////////////////
// CTest3Dlg dialog

class CTest3Dlg : public CDialog
{
// Construction
public:
	double GetOutputValue(CString cs);
	double GetCurrentValue(CString cs);
	double GetSettingValue(CString cs);
	CTest3Dlg(CWnd* pParent = NULL);	// standard constructor
	//LRESULT On_Receive(WPARAM wp, LPARAM lp);
// Dialog Data
	//{{AFX_DATA(CTest3Dlg)
	enum { IDD = IDD_TEST3_DIALOG };
	CButton	m_bHexSend;
	CButton	m_bHexRecv;
	CButton	m_bSendCommand;
	CButton	m_bQuery;
	CString	m_strCommandSend;
	int		m_CurrentValue;
	int		m_OutputValue;
	CString	m_strCOMPort;
	BOOL	m_bAutoCheck;
	CString	m_strReturnBuf;
	int		m_SettingValue;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CTest3Dlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL
   	cnComm myCom1;

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CTest3Dlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnButtonQuery();
	afx_msg void OnButtonSendCommand();
	afx_msg void OnButtonClearRecv();
	afx_msg void OnButtonClearSend();
	afx_msg void OnCheckAuto();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_TEST3DLG_H__7DBA92F5_1C09_4D90_BF71_C6106CDE6DEA__INCLUDED_)

⌨️ 快捷键说明

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