Click here to Skip to main content
15,901,373 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how can i open a file(.doc or .txt or .xsl) in a dialog in MFC? Pin
Hamid_RT5-Aug-08 20:15
Hamid_RT5-Aug-08 20:15 
QuestionListing installed updates Pin
vineeshV5-Aug-08 18:15
vineeshV5-Aug-08 18:15 
AnswerRe: Listing installed updates Pin
_AnsHUMAN_ 5-Aug-08 19:01
_AnsHUMAN_ 5-Aug-08 19:01 
QuestionRe: Listing installed updates Pin
vineeshV5-Aug-08 19:15
vineeshV5-Aug-08 19:15 
AnswerRe: Listing installed updates Pin
_AnsHUMAN_ 5-Aug-08 19:26
_AnsHUMAN_ 5-Aug-08 19:26 
GeneralRe: Listing installed updates Pin
vineeshV5-Aug-08 19:38
vineeshV5-Aug-08 19:38 
QuestionTimer is getting frized on a particular functin call Pin
ptr_Electron5-Aug-08 17:55
ptr_Electron5-Aug-08 17:55 
AnswerRe: Timer is getting frized on a particular functin call Pin
Naveen5-Aug-08 18:18
Naveen5-Aug-08 18:18 
When you set a timer using the SetTimer, the windows will send a WM_TIMER message to the window. Since this is a message, you need to dispatch the messages to get this message. But in your case since the thread is busy in executing another function, it cannot dispatch the message. That why the OnTimer() function is not called at this time.

Another solution is creating a second thread.


GeneralRe: Timer is getting frized on a particular functin call Pin
ptr_Electron5-Aug-08 18:33
ptr_Electron5-Aug-08 18:33 
GeneralRe: Timer is getting frized on a particular functin call Pin
Naveen5-Aug-08 18:48
Naveen5-Aug-08 18:48 
GeneralRe: Timer is getting frized on a particular functin call Pin
ptr_Electron5-Aug-08 19:07
ptr_Electron5-Aug-08 19:07 
GeneralRe: Timer is getting frized on a particular functin call Pin
Naveen5-Aug-08 19:17
Naveen5-Aug-08 19:17 
GeneralRe: Timer is getting frized on a particular functin call Pin
ptr_Electron5-Aug-08 19:29
ptr_Electron5-Aug-08 19:29 
GeneralRe: Timer is getting frized on a particular functin call Pin
Naveen5-Aug-08 19:36
Naveen5-Aug-08 19:36 
GeneralRe: Timer is getting frized on a particular functin call Pin
ptr_Electron5-Aug-08 20:09
ptr_Electron5-Aug-08 20:09 
GeneralRe: Timer is getting frized on a particular functin call Pin
Naveen5-Aug-08 20:14
Naveen5-Aug-08 20:14 
GeneralRe: Timer is getting frized on a particular functin call Pin
ptr_Electron5-Aug-08 21:43
ptr_Electron5-Aug-08 21:43 
AnswerRe: Timer is getting frized on a particular functin call Pin
Jijo.Raj5-Aug-08 19:09
Jijo.Raj5-Aug-08 19:09 
GeneralRe: Timer is getting frized on a particular functin call Pin
ptr_Electron5-Aug-08 21:29
ptr_Electron5-Aug-08 21:29 
GeneralRe: Timer is getting frized on a particular functin call Pin
Jijo.Raj5-Aug-08 21:51
Jijo.Raj5-Aug-08 21:51 
GeneralRe: Timer is getting frized on a particular functin call Pin
ptr_Electron6-Aug-08 1:38
ptr_Electron6-Aug-08 1:38 
GeneralRe: Timer is getting frized on a particular functin call Pin
ptr_Electron6-Aug-08 3:05
ptr_Electron6-Aug-08 3:05 
Questioninterface to proxy object in COM Pin
George_George5-Aug-08 16:30
George_George5-Aug-08 16:30 
AnswerRe: interface to proxy object in COM Pin
Stephen Hewitt5-Aug-08 16:59
Stephen Hewitt5-Aug-08 16:59 
GeneralRe: interface to proxy object in COM Pin
George_George5-Aug-08 21:23
George_George5-Aug-08 21:23 

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.