Click here to Skip to main content
15,916,835 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Get windows login name using VC++/VC Pin
Nibu babu thomas5-May-06 2:01
Nibu babu thomas5-May-06 2:01 
QuestionInter-process communication problem Pin
RickyC5-May-06 1:46
RickyC5-May-06 1:46 
AnswerRe: Inter-process communication problem Pin
led mike5-May-06 5:11
led mike5-May-06 5:11 
GeneralRe: Inter-process communication problem Pin
RickyC5-May-06 7:33
RickyC5-May-06 7:33 
GeneralRe: Inter-process communication problem Pin
led mike5-May-06 8:01
led mike5-May-06 8:01 
Questionapplication is exiting on pressing enter Pin
helpcode5-May-06 1:43
helpcode5-May-06 1:43 
AnswerRe: application is exiting on pressing enter Pin
Cedric Moonen5-May-06 1:45
Cedric Moonen5-May-06 1:45 
AnswerRe: application is exiting on pressing enter Pin
Laxman Auti5-May-06 3:46
Laxman Auti5-May-06 3:46 
Hey man,
if your application is dialog based then the following code helps you
what i have used in my application.

BOOL CmyApp::PreTranslateMessage(MSG* pMsg) 
{
	if(pMsg->message == WM_KEYDOWN && (VK_ESCAPE == pMsg->wParam || VK_RETURN == pMsg->wParam))
			pMsg->wParam=NULL;

	return CWinApp::PreTranslateMessage(pMsg);
}


Knock out 'T' from CAN'T
You 'CAN' if you think you 'CAN'
Cool | :cool:
GeneralRe: application is exiting on pressing enter Pin
helpcode7-May-06 18:05
helpcode7-May-06 18:05 
QuestionAll about C++ Pin
Sarvan AL5-May-06 1:28
Sarvan AL5-May-06 1:28 
AnswerRe: All about C++ Pin
toxcct5-May-06 1:34
toxcct5-May-06 1:34 
GeneralRe: All about C++ Pin
Sarvan AL5-May-06 1:55
Sarvan AL5-May-06 1:55 
GeneralRe: All about C++ Pin
toxcct5-May-06 2:02
toxcct5-May-06 2:02 
GeneralRe: All about C++ Pin
Sarvan AL5-May-06 2:06
Sarvan AL5-May-06 2:06 
GeneralRe: All about C++ Pin
toxcct5-May-06 2:07
toxcct5-May-06 2:07 
GeneralRe: All about C++ Pin
David Crow5-May-06 2:39
David Crow5-May-06 2:39 
AnswerTurbo C++ : The correction. Pin
Maxwell Chen5-May-06 6:45
Maxwell Chen5-May-06 6:45 
AnswerRe: All about C++ Pin
Maximilien5-May-06 3:31
Maximilien5-May-06 3:31 
GeneralRe: All about C++ Pin
Sarvan AL5-May-06 4:58
Sarvan AL5-May-06 4:58 
AnswerRe: All about C++ Pin
Maxwell Chen5-May-06 7:21
Maxwell Chen5-May-06 7:21 
GeneralRe: All about C++ Pin
Sarvan AL7-May-06 19:19
Sarvan AL7-May-06 19:19 
QuestionQ: how to get a themed scrollbar Pin
Steve S5-May-06 1:19
Steve S5-May-06 1:19 
AnswerRe: Q: how to get a themed scrollbar Pin
Naveen5-May-06 2:01
Naveen5-May-06 2:01 
GeneralRe: Q: how to get a themed scrollbar Pin
Steve S10-May-06 2:28
Steve S10-May-06 2:28 
QuestionSimple Q Pin
Anilkumar K V5-May-06 0:54
Anilkumar K V5-May-06 0:54 

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.