Click here to Skip to main content
15,915,600 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Context Menu Pin
Stephen Hewitt9-Jun-10 21:31
Stephen Hewitt9-Jun-10 21:31 
GeneralRe: Context Menu Pin
VVVimal9-Jun-10 22:32
VVVimal9-Jun-10 22:32 
GeneralRe: Context Menu Pin
Stephen Hewitt14-Jun-10 20:16
Stephen Hewitt14-Jun-10 20:16 
AnswerRe: Context Menu Pin
Parthiban9-Jun-10 22:42
Parthiban9-Jun-10 22:42 
Questionwin32 app window not tabbing to WS_TABSTOP style edit controls Pin
suendisra9-Jun-10 19:58
suendisra9-Jun-10 19:58 
AnswerRe: win32 app window not tabbing to WS_TABSTOP style edit controls Pin
Stephen Hewitt9-Jun-10 20:03
Stephen Hewitt9-Jun-10 20:03 
GeneralRe: win32 app window not tabbing to WS_TABSTOP style edit controls Pin
suendisra9-Jun-10 20:19
suendisra9-Jun-10 20:19 
GeneralRe: win32 app window not tabbing to WS_TABSTOP style edit controls Pin
Stephen Hewitt9-Jun-10 20:23
Stephen Hewitt9-Jun-10 20:23 
The message pump would have to look something like this:
MSG m;
while (GetMessage(&m, NULL, 0, 0))
{
    if (!IsDialogMessage(hDialog, &m))
    {
        TranslateMessage(&m);
        DispatchMessage(&m);
    }
}


Note that things just work for modal dialogs as they implement their own message pumps which do the right thing. For modeless dialog and other windows you have to do it yourself.
Steve

GeneralRe: win32 app window not tabbing to WS_TABSTOP style edit controls Pin
suendisra9-Jun-10 20:25
suendisra9-Jun-10 20:25 
Questionhow the client and server communicating in internet? Pin
rrthangavel9-Jun-10 19:33
rrthangavel9-Jun-10 19:33 
AnswerRe: how the client and server communicating in internet? Pin
Moak9-Jun-10 23:08
Moak9-Jun-10 23:08 
QuestionMust define a target architecture. Pin
shiv@nand9-Jun-10 18:03
shiv@nand9-Jun-10 18:03 
AnswerRe: Must define a target architecture. Pin
«_Superman_»9-Jun-10 19:06
professional«_Superman_»9-Jun-10 19:06 
AnswerRe: Must define a target architecture. Pin
David Crow10-Jun-10 3:09
David Crow10-Jun-10 3:09 
Questionmatrix x vector -> vector Pin
VeganFanatic9-Jun-10 15:03
VeganFanatic9-Jun-10 15:03 
AnswerRe: matrix x vector -> vector Pin
enhzflep9-Jun-10 17:42
enhzflep9-Jun-10 17:42 
GeneralRe: matrix x vector -> vector Pin
VeganFanatic9-Jun-10 17:45
VeganFanatic9-Jun-10 17:45 
AnswerRe: matrix x vector -> vector Pin
CPallini9-Jun-10 20:56
mveCPallini9-Jun-10 20:56 
QuestionDisable shortcuts of CRichEdit control. Pin
ShilpiP9-Jun-10 7:09
ShilpiP9-Jun-10 7:09 
AnswerRe: Disable shortcuts of CRichEdit control. Pin
Rajesh R Subramanian9-Jun-10 7:18
professionalRajesh R Subramanian9-Jun-10 7:18 
QuestionOperator Or Pin
Schehaider_Aymen9-Jun-10 4:19
Schehaider_Aymen9-Jun-10 4:19 
AnswerRe: Operator Or Pin
Chris Losinger9-Jun-10 4:21
professionalChris Losinger9-Jun-10 4:21 
AnswerRe: Operator Or Pin
Aescleal9-Jun-10 4:33
Aescleal9-Jun-10 4:33 
GeneralRe: Operator Or, Pin
Schehaider_Aymen9-Jun-10 4:51
Schehaider_Aymen9-Jun-10 4:51 
GeneralRe: Operator Or, Pin
David Crow9-Jun-10 5:05
David Crow9-Jun-10 5:05 

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.