Click here to Skip to main content
15,904,653 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionExecution Speed of C++ in different circumstances!!!! [modified] Pin
auto98178-Aug-09 11:46
auto98178-Aug-09 11:46 
AnswerRe: Execution Speed of C++ in different circumstances!!!! [modified] Pin
Moak8-Aug-09 12:46
Moak8-Aug-09 12:46 
AnswerRe: Execution Speed of C++ in different circumstances!!!! Pin
Maximilien9-Aug-09 1:47
Maximilien9-Aug-09 1:47 
QuestionDisable esc key exit for MFC Application Pin
swinder8-Aug-09 9:11
swinder8-Aug-09 9:11 
AnswerRe: Disable esc key exit for MFC Application Pin
Code-o-mat8-Aug-09 9:43
Code-o-mat8-Aug-09 9:43 
AnswerRe: Disable esc key exit for MFC Application Pin
David Crow8-Aug-09 11:38
David Crow8-Aug-09 11:38 
GeneralRe: Disable esc key exit for MFC Application Pin
jon_fallon9-Aug-09 2:45
jon_fallon9-Aug-09 2:45 
AnswerRe: Disable esc key exit for MFC Application Pin
jon_fallon9-Aug-09 2:44
jon_fallon9-Aug-09 2:44 
Also, one use use PreTranslateMessage to intercept the ESC key. Add the function to the dialog using the class wizard, then check for the ESC key.

BOOL CDxf2NastranDlg::PreTranslateMessage(MSG* pMsg) <br />
{<br />
	// TODO: Add your specialized code here and/or call the base class<br />
	// ESC key<br />
	if(pMsg->wParam == VK_ESCAPE) { return TRUE; }<br />
<br />
	return CDialog::PreTranslateMessage(pMsg);<br />
}<br />

QuestionRead Text File line be line.... Pin
spalanivel8-Aug-09 8:23
spalanivel8-Aug-09 8:23 
AnswerRe: Read Text File line be line.... Pin
PJ Arends8-Aug-09 9:23
professionalPJ Arends8-Aug-09 9:23 
AnswerRe: Read Text File line be line.... Pin
dybs9-Aug-09 16:20
dybs9-Aug-09 16:20 
QuestionStatus bar, owner-draw theme background? Pin
Moak8-Aug-09 8:15
Moak8-Aug-09 8:15 
AnswerRe: Status bar, owner-draw theme background? Pin
enhzflep9-Aug-09 1:59
enhzflep9-Aug-09 1:59 
GeneralRe: Status bar, owner-draw theme background? Pin
Moak9-Aug-09 2:35
Moak9-Aug-09 2:35 
AnswerRe: Status bar, owner-draw theme background? Pin
kilt11-Aug-09 6:28
kilt11-Aug-09 6:28 
Questionhelp with code from C# to C++/CLI Pin
iozk8-Aug-09 4:43
iozk8-Aug-09 4:43 
AnswerRe: help with code from C# to C++/CLI Pin
Dave Doknjas8-Aug-09 13:12
Dave Doknjas8-Aug-09 13:12 
QuestionRight Data in traditional Chinese but not in Simplified chines. Pin
gothic_coder8-Aug-09 3:56
gothic_coder8-Aug-09 3:56 
Questiondisply Pin
sreenivascnu8-Aug-09 0:18
sreenivascnu8-Aug-09 0:18 
AnswerRe: disply Pin
Super Lloyd8-Aug-09 0:23
Super Lloyd8-Aug-09 0:23 
AnswerRe: disply Pin
Code-o-mat8-Aug-09 5:07
Code-o-mat8-Aug-09 5:07 
QuestionVirtual Driver Development Pin
Sipder7-Aug-09 20:50
Sipder7-Aug-09 20:50 
AnswerRe: Virtual Driver Development Pin
Super Lloyd8-Aug-09 0:28
Super Lloyd8-Aug-09 0:28 
QuestionProblem with use of Mutex and System Tray Icon Together. Pin
Le@rner7-Aug-09 19:03
Le@rner7-Aug-09 19:03 
AnswerRe: Problem with use of Mutex and System Tray Icon Together. Pin
«_Superman_»7-Aug-09 19:25
professional«_Superman_»7-Aug-09 19:25 

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.