📄 testdlg.cpp
字号:
// testDlg.cpp : implementation file
//
#include "stdafx.h"
#include "test.h"
#include "testDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CTestDlg dialog
CTestDlg::CTestDlg(CWnd* pParent /*=NULL*/)
: CDialog(CTestDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CTestDlg)
m_name = _T("Data1");
m_nType = 0;
//}}AFX_DATA_INIT
// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CTestDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CTestDlg)
DDX_Text(pDX, IDC_NAME, m_name);
DDX_Text(pDX, IDC_TYPE, m_nType);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CTestDlg, CDialog)
//{{AFX_MSG_MAP(CTestDlg)
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_BN_CLICKED(IDC_ADD, OnAdd)
ON_BN_CLICKED(IDC_DEL, OnDel)
ON_BN_CLICKED(IDC_MOD, OnMod)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTestDlg message handlers
BOOL CTestDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here
return TRUE; // return TRUE unless you set the focus to a control
}
// If you add a minimize button to your dialog, you will need the code below
// to draw the icon. For MFC applications using the document/view model,
// this is automatically done for you by the framework.
// The system calls this to obtain the cursor to display while the user drags
// the minimized window.
HCURSOR CTestDlg::OnQueryDragIcon()
{
return (HCURSOR) m_hIcon;
}
extern "C" __declspec(dllimport) long OnAddIoDev(int nSubType, IODEVCFGSTRUCT &pIoDevCfgStruct);
void CTestDlg::OnAdd()
{
UpdateData();
#ifdef _DEBUG
hIns = ::LoadLibrary("..\\..\\debug\\Iodevcfg.dll");//D:\My work\Modbus\进一步整理过2.10的modbus协议\dev\Debug\IoDevUi.dll");
#else
hIns = ::LoadLibrary("..\\..\\debug\\Iodevcfg.dll");
#endif
if(hIns)
{
pFunc = (MYFUNC*)::GetProcAddress(hIns,"OnAddIoDev");
if(pFunc)
{
for(int i = 0; i<32; i++ )
{
pIoDevCfgStruct.n[i] = 0;
}
pFunc( m_nType, &pIoDevCfgStruct);
}
}
}
extern "C" __declspec(dllimport) long OnModIoDev( int nSubType, IODEVCFGSTRUCT* pIoDevCfgStruct);
void CTestDlg::OnMod()
{
UpdateData();
#ifdef _DEBUG
hIns = ::LoadLibrary("..\\..\\debug\\Iodevcfg.dll");
#else
hIns = ::LoadLibrary("..\\..\\debug\\Iodevcfg.dll");
#endif
if(hIns)
{
pFunc = (MYFUNC*)::GetProcAddress(hIns,"OnModIoDev");
if(pFunc)
pFunc( m_nType, &pIoDevCfgStruct);
}
}
extern "C" __declspec(dllimport) long OnDelIoDev( int nSubType, IODEVCFGSTRUCT* pIoDevCfgStruct);
void CTestDlg::OnDel()
{
UpdateData();
#ifdef _DEBUG
hIns = ::LoadLibrary("..\\..\\debug\\Iodevcfg.dll");
#else
hIns = ::LoadLibrary("..\\..\\debug\\Iodevcfg.dll");
#endif
if(hIns)
{
pFunc = (MYFUNC*)::GetProcAddress(hIns,"OnDelIoDev");
if(pFunc)
pFunc( m_nType, &pIoDevCfgStruct);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -