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

📄 winhelpdlg.cpp

📁 wince系统下用EVC4.0实现网页形式直接打开帮助
💻 CPP
字号:
// WinHelpDlg.cpp : implementation file
//

#include "stdafx.h"
#include "WinHelp.h"
#include "WinHelpDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CWinHelpDlg dialog

CWinHelpDlg::CWinHelpDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CWinHelpDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CWinHelpDlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
	// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
	m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CWinHelpDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CWinHelpDlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CWinHelpDlg, CDialog)
	//{{AFX_MSG_MAP(CWinHelpDlg)
	ON_WM_HELPINFO()
	ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CWinHelpDlg message handlers

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

	// Set the icon for this dialog.  The framework does this automatically
	//  when the application's main window is not a dialog
	SetIcon(m_hIcon, TRUE);			// Set big icon
	SetIcon(m_hIcon, FALSE);		// Set small icon
	
	CenterWindow(GetDesktopWindow());	// center to the hpc screen

	// TODO: Add extra initialization here
	
	return TRUE;  // return TRUE  unless you set the focus to a control
}

void CWinHelpDlg::OnHelpInfo()
{
	// TODO: implement help here
	MessageBox(_T("Help"));
}


void CWinHelpDlg::OnButton1() 
{
	SHELLEXECUTEINFO ShExecInfo = {0};
	ShExecInfo.cbSize = sizeof(SHELLEXECUTEINFO);
	ShExecInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
	ShExecInfo.hwnd = NULL;
	ShExecInfo.lpVerb = NULL;
	ShExecInfo.lpFile =_T("\\Storage Card\\index.htm");             
	ShExecInfo.lpParameters = _T("");     
	ShExecInfo.lpDirectory = NULL;
	ShExecInfo.nShow = SW_SHOW;
	ShExecInfo.hInstApp = NULL;       
	ShellExecuteEx(&ShExecInfo);
	WaitForSingleObject(ShExecInfo.hProcess,INFINITE);	

	SHELLEXECUTEINFO ShExecInfo1 = {0};
	ShExecInfo1.cbSize = sizeof(SHELLEXECUTEINFO);
	ShExecInfo1.fMask = SEE_MASK_NOCLOSEPROCESS;
	ShExecInfo1.hwnd = NULL;
	ShExecInfo1.lpVerb = NULL;
	ShExecInfo1.lpFile =_T("\\Storage Card\\templet");             
	ShExecInfo1.lpParameters = _T("");     
	ShExecInfo1.lpDirectory = NULL;
	ShExecInfo1.nShow = SW_SHOW;
	ShExecInfo1.hInstApp = NULL;       
	ShellExecuteEx(&ShExecInfo1);
	WaitForSingleObject(ShExecInfo1.hProcess,INFINITE);	


}

⌨️ 快捷键说明

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