?? aboutdlg.cpp
字號:
// AboutDlg.cpp : implementation file
//
#include "stdafx.h"
#include "CustomCollectionDemo.h"
#include "AboutDlg.h"
#include ".\aboutdlg.h"
#using <system.dll>
// CAboutDlg dialog
IMPLEMENT_DYNAMIC(CAboutDlg, CDialog)
CAboutDlg::CAboutDlg(CWnd* pParent /*=NULL*/)
: CDialog(CAboutDlg::IDD, pParent)
{
}
CAboutDlg::~CAboutDlg()
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
ON_BN_CLICKED(IDOK, OnBnClickedOk)
END_MESSAGE_MAP()
// CAboutDlg message handlers
void CAboutDlg::OnBnClickedOk()
{
try
{
CWaitCursor wait;
System::Diagnostics::Process::Start(S"IExplore.exe", S"http://www.ArcherConsultingGroup.com/");
}
catch(Exception* e)
{
AfxMessageBox((CString)e->Message);
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -