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

   return 0;
}
// App command to run the dialog
void CDistributedGameTreeServerApp::OnAppAbout()
{
	AboutDlg aboutDlg;
	aboutDlg.DoModal();
}
Exemple #3
0
void AboutCommand::execute(CommandContext &aContext)
{
    AboutDlg sDlg;
    sDlg.DoModal();
}