Click here to Skip to main content
15,891,951 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How can i get this event what the virtual address of my process be changed by the windows?? Pin
l a u r e n8-Jan-04 17:04
l a u r e n8-Jan-04 17:04 
GeneralGrabbing messages while busy Pin
Ernesto D.8-Jan-04 15:07
Ernesto D.8-Jan-04 15:07 
GeneralRe: Grabbing messages while busy Pin
Christian Graus8-Jan-04 15:15
protectorChristian Graus8-Jan-04 15:15 
GeneralRe: Grabbing messages while busy Pin
l a u r e n8-Jan-04 17:06
l a u r e n8-Jan-04 17:06 
GeneralRe: Grabbing messages while busy Pin
Tim Smith9-Jan-04 4:08
Tim Smith9-Jan-04 4:08 
GeneralRe: Grabbing messages while busy Pin
Ernesto D.8-Jan-04 18:27
Ernesto D.8-Jan-04 18:27 
GeneralRe: Grabbing messages while busy Pin
2249178-Jan-04 22:29
2249178-Jan-04 22:29 
GeneralUrgent: Calling Child Dialog when press F2. Pin
IrishSonic8-Jan-04 14:08
IrishSonic8-Jan-04 14:08 
Hiya I want to call my child dialog(a dialog for searching..) when F2 is pressed. But I keep getting:
Debug Assertion Failed! File: wincore.cpp Line: 880

I call the dialog in PreTranslateMessage i.e

BOOL CCreateCustomerInvoice::PreTranslateMessage(MSG* pMsg)
{
// TODO: Add your specialized code here and/or call the base class
if( pMsg->message == WM_KEYDOWN )
{
switch( pMsg->wParam )
{
case VK_F2: // if F2 key is pressed
CSearch search; // child dialog class
search.DoModal(); // call dialog
break;
} //end of switch
} //end of if

return CDialog::PreTranslateMessage(pMsg);
}

How do I do this?? Thanks.
GeneralRe: Urgent: Calling Child Dialog when press F2. Pin
l a u r e n8-Jan-04 14:39
l a u r e n8-Jan-04 14:39 
GeneralRe: Urgent: Calling Child Dialog when press F2. Pin
Weiye Chen8-Jan-04 18:58
Weiye Chen8-Jan-04 18:58 
GeneralMoving a window Pin
michou8-Jan-04 13:09
michou8-Jan-04 13:09 
GeneralRe: Moving a window Pin
Brad Bruce8-Jan-04 13:52
Brad Bruce8-Jan-04 13:52 
GeneralRe: Moving a window Pin
michou8-Jan-04 18:55
michou8-Jan-04 18:55 
GeneralRe: Moving a window Pin
Brad Bruce9-Jan-04 1:22
Brad Bruce9-Jan-04 1:22 
GeneralRe: Moving a window Pin
michou12-Jan-04 17:49
michou12-Jan-04 17:49 
GeneralCreateProcess problem and CString to char* conversion Pin
will13838-Jan-04 11:52
will13838-Jan-04 11:52 
GeneralRe: CreateProcess problem and CString to char* conversion Pin
PJ Arends8-Jan-04 13:18
professionalPJ Arends8-Jan-04 13:18 
GeneralRe: CreateProcess problem and CString to char* conversion Pin
l a u r e n8-Jan-04 13:42
l a u r e n8-Jan-04 13:42 
GeneralRe: CreateProcess problem and CString to char* conversion Pin
Prakash Nadar8-Jan-04 16:15
Prakash Nadar8-Jan-04 16:15 
GeneralRe: CreateProcess problem and CString to char* conversion Pin
l a u r e n8-Jan-04 16:28
l a u r e n8-Jan-04 16:28 
GeneralRe: CreateProcess problem and CString to char* conversion Pin
Prakash Nadar8-Jan-04 16:56
Prakash Nadar8-Jan-04 16:56 
GeneralRe: CreateProcess problem and CString to char* conversion Pin
l a u r e n8-Jan-04 17:03
l a u r e n8-Jan-04 17:03 
GeneralRe: CreateProcess problem and CString to char* conversion Pin
Tim Smith9-Jan-04 4:11
Tim Smith9-Jan-04 4:11 
GeneralRe: CreateProcess problem and CString to char* conversion Pin
Jijo.Raj8-Jan-04 19:21
Jijo.Raj8-Jan-04 19:21 
QuestionIs there an easy way to change text color in CListCtrl header? Pin
Member 7821548-Jan-04 11:19
Member 7821548-Jan-04 11:19 

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.