Click here to Skip to main content
15,917,568 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: print preview Pin
Bravoone_200612-Jun-07 2:53
Bravoone_200612-Jun-07 2:53 
QuestionDisplay non-solid-color background in scroll-view correctly Pin
chen.zd11-Jun-07 19:13
chen.zd11-Jun-07 19:13 
QuestionGetCharABCWidths behaviour in Vista Pin
NiceNaidu11-Jun-07 18:40
NiceNaidu11-Jun-07 18:40 
AnswerRe: GetCharABCWidths behaviour in Vista Pin
Hans Dietrich11-Jun-07 21:03
mentorHans Dietrich11-Jun-07 21:03 
GeneralRe: GetCharABCWidths behaviour in Vista Pin
NiceNaidu11-Jun-07 23:27
NiceNaidu11-Jun-07 23:27 
GeneralRe: GetCharABCWidths behaviour in Vista Pin
Mark Salsbery12-Jun-07 8:03
Mark Salsbery12-Jun-07 8:03 
QuestionKeyDown Pin
sheetal_0611-Jun-07 18:26
sheetal_0611-Jun-07 18:26 
AnswerRe: KeyDown Pin
Nibu babu thomas11-Jun-07 18:45
Nibu babu thomas11-Jun-07 18:45 
Use GetKeyState to find out state of control key...

BOOL SomeDialog::PreTranslateMessage(MSG* pMsg) 
{   
    if( pMsg->message == WM_KEYDOWN && 
        pMsg->wParam == VK_TAB &&
        ( GetKeyState( VK_CONTROL ) & 0x8000 )
      )
    {
        HandleCtrlTab();
        return TRUE;
    }
    return CDialog::PreTranslateMessage(pMsg);
}





Nibu thomas
A Developer

Code must be written to be read, not by the compiler, but by another human being.

http:\\nibuthomas.wordpress.com

GeneralRe: KeyDown Pin
sheetal_0611-Jun-07 19:12
sheetal_0611-Jun-07 19:12 
AnswerRe: KeyDown Pin
Hamid_RT11-Jun-07 20:21
Hamid_RT11-Jun-07 20:21 
QuestionError importing Excel typelib Pin
progDes11-Jun-07 18:02
progDes11-Jun-07 18:02 
AnswerRe: Error importing Excel typelib Pin
Hamid_RT11-Jun-07 20:03
Hamid_RT11-Jun-07 20:03 
GeneralRe: Error importing Excel typelib Pin
progDes11-Jun-07 20:21
progDes11-Jun-07 20:21 
QuestionRe: Error importing Excel typelib Pin
David Crow12-Jun-07 3:00
David Crow12-Jun-07 3:00 
AnswerRe: Error importing Excel typelib Pin
progDes12-Jun-07 3:09
progDes12-Jun-07 3:09 
GeneralRe: Error importing Excel typelib Pin
David Crow12-Jun-07 3:15
David Crow12-Jun-07 3:15 
GeneralRe: Error importing Excel typelib Pin
progDes12-Jun-07 4:09
progDes12-Jun-07 4:09 
GeneralRe: Error importing Excel typelib Pin
David Crow12-Jun-07 4:13
David Crow12-Jun-07 4:13 
GeneralRe: Error importing Excel typelib Pin
progDes12-Jun-07 4:19
progDes12-Jun-07 4:19 
QuestionRe: Error importing Excel typelib Pin
David Crow12-Jun-07 4:49
David Crow12-Jun-07 4:49 
GeneralRe: Error importing Excel typelib Pin
progDes12-Jun-07 5:01
progDes12-Jun-07 5:01 
GeneralRe: Error importing Excel typelib [modified] Pin
progDes12-Jun-07 5:08
progDes12-Jun-07 5:08 
GeneralRe: Error importing Excel typelib Pin
progDes12-Jun-07 5:27
progDes12-Jun-07 5:27 
QuestionWhat are .bsr files Pin
prithaa11-Jun-07 17:58
prithaa11-Jun-07 17:58 
AnswerRe: What are .bsr files Pin
ThatsAlok11-Jun-07 19:57
ThatsAlok11-Jun-07 19:57 

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.