LRESULT CShellViewImpl::OnAbout ( WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled )
{
CSimpleDialog<IDD_ABOUTDLG> dlg;

    dlg.DoModal();
    return 0;
}
Beispiel #2
0
LRESULT CMainDlg::OnAppAbout(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
	CSimpleDialog<IDD_ABOUTBOX, FALSE> dlg;
	dlg.DoModal();
	return 0;
}
Beispiel #3
0
void CMainFrame::OnAppAbout( UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wndCtl*/ )
{
	CSimpleDialog<IDD_ABOUTBOX, true> dlg;
	dlg.DoModal();
}
Beispiel #4
0
LRESULT [!output WTL_MAINDLG_CLASS]::OnAppAbout(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
	CSimpleDialog<IDD_ABOUTBOX, FALSE> dlg;
	dlg.DoModal();
	return 0;
}
Beispiel #5
0
LRESULT CRunDlg::OnAbout(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
    CSimpleDialog<IDD_ABOUT> ab;
    ab.DoModal(m_hWnd);
    return 0;
}