Click here to Skip to main content
15,926,507 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Setting Environment Variables Pin
Ștefan-Mihai MOGA25-Jul-08 18:42
professionalȘtefan-Mihai MOGA25-Jul-08 18:42 
AnswerRe: Setting Environment Variables Pin
Mark Salsbery26-Jul-08 5:57
Mark Salsbery26-Jul-08 5:57 
GeneralRe: Setting Environment Variables Pin
Bram van Kampen26-Jul-08 17:07
Bram van Kampen26-Jul-08 17:07 
QuestionCan ADO process excel well? [modified] Pin
followait25-Jul-08 16:14
followait25-Jul-08 16:14 
AnswerRe: Can ADO process excel well? Pin
Ștefan-Mihai MOGA25-Jul-08 18:48
professionalȘtefan-Mihai MOGA25-Jul-08 18:48 
Questionan alternative to StrToInt64Ex() Pin
reteset25-Jul-08 8:38
reteset25-Jul-08 8:38 
AnswerRe: an alternative to StrToInt64Ex() Pin
Mark Salsbery25-Jul-08 9:02
Mark Salsbery25-Jul-08 9:02 
AnswerRe: an alternative to StrToInt64Ex() Pin
Joe Woodbury25-Jul-08 9:27
professionalJoe Woodbury25-Jul-08 9:27 
QuestionHow to compile this project [modified] Pin
staticv25-Jul-08 7:34
staticv25-Jul-08 7:34 
AnswerRe: How to compile this project Pin
Cedric Moonen25-Jul-08 7:44
Cedric Moonen25-Jul-08 7:44 
GeneralRe: How to compile this project Pin
staticv25-Jul-08 8:00
staticv25-Jul-08 8:00 
GeneralRe: How to compile this project Pin
Cedric Moonen25-Jul-08 8:06
Cedric Moonen25-Jul-08 8:06 
GeneralRe: How to compile this project Pin
staticv25-Jul-08 8:37
staticv25-Jul-08 8:37 
GeneralRe: How to compile this project Pin
Cedric Moonen25-Jul-08 22:03
Cedric Moonen25-Jul-08 22:03 
GeneralRe: How to compile this project Pin
staticv26-Jul-08 7:19
staticv26-Jul-08 7:19 
QuestionWM_CTLCOLOR..... mess VS WM_PAINT Pin
ForNow25-Jul-08 6:46
ForNow25-Jul-08 6:46 
AnswerRe: WM_CTLCOLOR..... mess VS WM_PAINT Pin
Mark Salsbery25-Jul-08 7:06
Mark Salsbery25-Jul-08 7:06 
GeneralRe: WM_CTLCOLOR..... mess VS WM_PAINT Pin
Paul Sanders (the other one)25-Jul-08 7:55
Paul Sanders (the other one)25-Jul-08 7:55 
GeneralRe: WM_CTLCOLOR..... mess VS WM_PAINT Pin
ForNow25-Jul-08 12:09
ForNow25-Jul-08 12:09 
GeneralRe: WM_CTLCOLOR..... mess VS WM_PAINT Pin
Mark Salsbery25-Jul-08 12:19
Mark Salsbery25-Jul-08 12:19 
GeneralRe: WM_CTLCOLOR..... mess VS WM_PAINT Pin
ForNow26-Jul-08 15:33
ForNow26-Jul-08 15:33 
QuestionMultiline tab control CTabCtrl ? Pin
bosfan25-Jul-08 6:11
bosfan25-Jul-08 6:11 
AnswerRe: Multiline tab control CTabCtrl ? Pin
Ștefan-Mihai MOGA25-Jul-08 18:52
professionalȘtefan-Mihai MOGA25-Jul-08 18:52 
QuestionTimers and timing Pin
john john mackey25-Jul-08 5:51
john john mackey25-Jul-08 5:51 
AnswerRe: Timers and timing Pin
Matthew Faithfull25-Jul-08 6:04
Matthew Faithfull25-Jul-08 6:04 
In a simple single-threaded scenario the answer is basically yes. MFC Timers are as far as I know still exposed via Windows messages. If your timer callback function overruns all that will mean is there will already be another WM_TIMER message waiting on the message queue to get processed wheenever you get to it. The next timer callback will in effect run late and the next and the next. Once you get into a multi threaded situation where timers can effectively interrupt worker threads or start new ones then things very quickly get a lot more complicated.

"The secret of happiness is freedom, and the secret of freedom, courage."
Thucydides (B.C. 460-400)

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.