Click here to Skip to main content
15,914,327 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalinstead of FileChannel in C++ Pin
sinea8-Jul-04 4:31
sinea8-Jul-04 4:31 
GeneralCapturing/Automating Another Application Window Pin
Rizi8-Jul-04 3:59
Rizi8-Jul-04 3:59 
GeneralRe: Capturing/Automating Another Application Window Pin
David Crow8-Jul-04 5:08
David Crow8-Jul-04 5:08 
GeneralRe: Capturing/Automating Another Application Window Pin
Amr Abdel-Mohsen8-Jul-04 9:39
Amr Abdel-Mohsen8-Jul-04 9:39 
GeneralAccelerators in a Dialog application Pin
__Cerb8-Jul-04 3:12
__Cerb8-Jul-04 3:12 
GeneralRe: Accelerators in a Dialog application Pin
David Crow8-Jul-04 3:24
David Crow8-Jul-04 3:24 
GeneralRe: Accelerators in a Dialog application Pin
__Cerb8-Jul-04 4:25
__Cerb8-Jul-04 4:25 
GeneralRe: Accelerators in a Dialog application Pin
David Crow8-Jul-04 5:00
David Crow8-Jul-04 5:00 
CTestDlg::CTestDlg(CWnd* pParent) : CDialog(CTestDlg::IDD, pParent)
{
    m_hAccelTable = LoadAccelerators(AfxGetResourceHandle(), MAKEINTRESOURCE(IDR_ACCELERATOR1));
}
 
BOOL CTestDlg::PreTranslateMessage( LPMSG pMsg ) 
{
    if (NULL != m_hAccelTable) 
    {
        if (::TranslateAccelerator(m_hWnd, m_hAccelTable, pMsg)) 
            return (TRUE);
    }
 
    return CDialog::PreTranslateMessage(pMsg);
}




"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen


GeneralRe: Accelerators in a Dialog application Pin
__Cerb8-Jul-04 12:23
__Cerb8-Jul-04 12:23 
GeneralTrail version... Pin
RobJones8-Jul-04 2:35
RobJones8-Jul-04 2:35 
GeneralRe: Trail version... Pin
Maximilien8-Jul-04 2:55
Maximilien8-Jul-04 2:55 
GeneralRe: Trail version... Pin
Michael P Butler8-Jul-04 5:43
Michael P Butler8-Jul-04 5:43 
GeneralRe: Trail version... Pin
RobJones8-Jul-04 6:09
RobJones8-Jul-04 6:09 
GeneralCPropertyPage / CPropertySheet problem Pin
SJolly8-Jul-04 2:32
SJolly8-Jul-04 2:32 
GeneralRe: CPropertyPage / CPropertySheet problem Pin
David Crow8-Jul-04 2:54
David Crow8-Jul-04 2:54 
GeneralRe: CPropertyPage / CPropertySheet problem Pin
SJolly8-Jul-04 3:46
SJolly8-Jul-04 3:46 
GeneralRe: CPropertyPage / CPropertySheet problem Pin
David Crow8-Jul-04 3:57
David Crow8-Jul-04 3:57 
GeneralRe: CPropertyPage / CPropertySheet problem Pin
SJolly8-Jul-04 4:09
SJolly8-Jul-04 4:09 
GeneralCHeaderList messages via CViewList Pin
Member 3600828-Jul-04 2:27
Member 3600828-Jul-04 2:27 
Questiononly 1 control catches tooltip? Pin
V.8-Jul-04 2:16
professionalV.8-Jul-04 2:16 
AnswerRe: only 1 control catches tooltip? Pin
David Crow8-Jul-04 2:57
David Crow8-Jul-04 2:57 
GeneralRe: only 1 control catches tooltip? Pin
V.8-Jul-04 3:00
professionalV.8-Jul-04 3:00 
GeneralRe: only 1 control catches tooltip? Pin
David Crow8-Jul-04 3:06
David Crow8-Jul-04 3:06 
GeneralRe: only 1 control catches tooltip? Pin
V.8-Jul-04 3:27
professionalV.8-Jul-04 3:27 
GeneralRe: only 1 control catches tooltip? Pin
David Crow8-Jul-04 4:04
David Crow8-Jul-04 4:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.