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

📄 chaxundlg.cpp

📁 用Delphi设计学院库房管理数据库系统。系统由三部分组成:物资供应管理系统
💻 CPP
字号:
// ChaxunDlg.cpp : implementation file
//

#include "stdafx.h"
#include "kufangDBS.h"
#include "ChaxunDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CChaxunDlg dialog


CChaxunDlg::CChaxunDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CChaxunDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CChaxunDlg)
	m_strZiduan = _T("");
	m_strValue = _T("");
	//}}AFX_DATA_INIT
}


void CChaxunDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CChaxunDlg)
	DDX_Control(pDX, IDC_LIST_CHAXUN, m_listChaxun);
	DDX_CBString(pDX, IDC_COMBO_ZIDUAN, m_strZiduan);
	DDX_Text(pDX, IDC_EDIT_VALUE, m_strValue);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CChaxunDlg, CDialog)
	//{{AFX_MSG_MAP(CChaxunDlg)
	ON_BN_CLICKED(IDC_BTN_CX_CHAXUN, OnBtnCxChaxun)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CChaxunDlg message handlers

void CChaxunDlg::OnBtnCxChaxun() 
{
	// TODO: Add your control notification handler code here
	
}

⌨️ 快捷键说明

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