コード例 #1
0
LRESULT MainFrame::OnAppAbout(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
   AboutDlg dlg;
   dlg.DoModal(m_hWnd);

   return 0;
}
コード例 #2
0
// App command to run the dialog
void CDistributedGameTreeServerApp::OnAppAbout()
{
	AboutDlg aboutDlg;
	aboutDlg.DoModal();
}
コード例 #3
0
ファイル: cmd_help.cpp プロジェクト: 3rdexp/fxfile
void AboutCommand::execute(CommandContext &aContext)
{
    AboutDlg sDlg;
    sDlg.DoModal();
}