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

📄 preequalerror.cpp

📁 基于专家系统应用的程序代码 使用vc编程,access为数据库的程序
💻 CPP
字号:
// PreEqualError.cpp : implementation file
//

#include "stdafx.h"
#include "minedabse.h"
#include "PreEqualError.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// PreEqualError dialog


PreEqualError::PreEqualError(CWnd* pParent /*=NULL*/)
	: CDialog(PreEqualError::IDD, pParent)
{
	//{{AFX_DATA_INIT(PreEqualError)
	m_edit1 = _T("");
	m_edit2 = _T("");
	//}}AFX_DATA_INIT
}


void PreEqualError::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(PreEqualError)
	DDX_Text(pDX, IDC_EDIT1, m_edit1);
	DDX_Text(pDX, IDC_EDIT2, m_edit2);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(PreEqualError, CDialog)
	//{{AFX_MSG_MAP(PreEqualError)
	ON_BN_CLICKED(IDDELETE, OnDelete)
	ON_BN_CLICKED(IDC_RETURN, OnReturn)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// PreEqualError message handlers

void PreEqualError::OnDelete() 
{
	// TODO: Add your control notification handler code here
	
}

void PreEqualError::OnReturn() 
{
	// TODO: Add your control notification handler code here
	
}

BOOL PreEqualError::OnInitDialog() 
{

//	UpdateData(false);
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

⌨️ 快捷键说明

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