ygxx.cpp
来自「航空管理系统 用vc6.0开发环境 odbc连接」· C++ 代码 · 共 50 行
CPP
50 行
// Ygxx.cpp : implementation file
#include "stdafx.h"
#include "HKGL.h"
#include "Ygxx.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CYgxx dialog
CYgxx::CYgxx(CWnd* pParent /*=NULL*/)
: CDialog(CYgxx::IDD, pParent)
{
//{{AFX_DATA_INIT(CYgxx)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CYgxx::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CYgxx)
DDX_Control(pDX, IDC_TAB1, m_TbYG);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CYgxx, CDialog)
//{{AFX_MSG_MAP(CYgxx)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CYgxx message handlers
BOOL CYgxx::OnInitDialog()
{
CDialog::OnInitDialog();
m_TbYG.AddPage("员工信息",&m_Ygcx,IDD_YGDIALOG);
m_TbYG.AddPage("员工管理",&m_Yggl,IDD_YGGLDLG);
m_TbYG.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 + =
减小字号Ctrl + -
显示快捷键?