📄 æ
字号:
// CeDB.cpp : Defines the class behaviors for the application.
#include "stdafx.h"
#include "前置机.h"
#include "PropSheet.h"
#include "PropPage1.h"
#include "PropPage2.h"
#include "PropPage3.h"
#include <SipAPI.h>
BEGIN_MESSAGE_MAP(CCeDBApp, CWinApp)
END_MESSAGE_MAP()
CCeDBApp::CCeDBApp() : CWinApp(){
m_nItem = 0;
}
CCeDBApp theApp;
BOOL CCeDBApp::InitInstance(){
if( FindWindow(NULL,_T("前置机数据采集软件 2004.7"))){
AfxMessageBox(_T("程序已经运行!!!")); exit(0);}
CPropSheet dlgSheet(TEXT("前置机数据采集软件 2004.7"));
CPropPage1 dlgPage1;
CPropPage2 dlgPage2;
CPropPage3 dlgPage3;
dlgSheet.AddPage(&dlgPage1);
dlgSheet.AddPage(&dlgPage2);
dlgSheet.AddPage(&dlgPage3);
m_pMainWnd = &dlgSheet;
dlgSheet.DoModal();
return FALSE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -