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

📄 wxxx.cpp

📁 航空管理系统 用vc6.0开发环境 odbc连接
💻 CPP
字号:
// WXXX.cpp : implementation file
//

#include "stdafx.h"
#include "HKGL.h"
#include "WXXX.h"

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

/////////////////////////////////////////////////////////////////////////////
// CWXXX dialog
CWXXX::CWXXX(CWnd* pParent /*=NULL*/)
	: CDialog(CWXXX::IDD, pParent)
{
	//{{AFX_DATA_INIT(CWXXX)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}
void CWXXX::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CWXXX)
	DDX_Control(pDX, IDC_TAB1, m_TbWX);
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CWXXX, CDialog)
	//{{AFX_MSG_MAP(CWXXX)

	//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CWXXX message handlers

BOOL CWXXX::OnInitDialog() 
{
	CDialog::OnInitDialog();
	

    m_TbWX.AddPage("维修信息",&m_wxcxdlg,IDD_WXXXDIALOG);	
	m_TbWX.AddPage("维修管理",&m_wxdlg,IDD_WXGLDLG);
	m_TbWX.Show();
	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 + -