Mercurial > vba-clojure
comparison src/win32/MainWndHelp.cpp @ 1:f9f4f1b99eed
importing src directory
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 10:31:27 -0600 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:8ced16adf2e1 | 1:f9f4f1b99eed |
---|---|
1 #include "stdafx.h" | |
2 #include "resource.h" | |
3 #include "MainWnd.h" | |
4 #include "AboutDialog.h" | |
5 #include "BugReport.h" | |
6 #include "VBA.h" | |
7 | |
8 extern int emulating; | |
9 | |
10 void MainWnd::OnHelpAbout() | |
11 { | |
12 theApp.winCheckFullscreen(); | |
13 AboutDialog dlg; | |
14 | |
15 dlg.DoModal(); | |
16 } | |
17 | |
18 void MainWnd::OnHelpFaq() | |
19 { | |
20 ::ShellExecute(0, _T("open"), "http://vba.ngemu.com/faq.shtml", | |
21 0, 0, SW_SHOWNORMAL); | |
22 } | |
23 | |
24 void MainWnd::OnHelpBugreport() | |
25 { | |
26 BugReport dlg(theApp.m_pMainWnd); | |
27 | |
28 dlg.DoModal(); | |
29 } | |
30 |