Click here to Skip to main content
15,911,531 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: To create appln using Wizard. Pin
sudhir_Kumar5-Jun-08 21:46
sudhir_Kumar5-Jun-08 21:46 
GeneralRe: To create appln using Wizard. Pin
KASR15-Jun-08 22:39
KASR15-Jun-08 22:39 
QuestionRe: To create appln using Wizard. Pin
sudhir_Kumar5-Jun-08 22:48
sudhir_Kumar5-Jun-08 22:48 
AnswerRe: To create appln using Wizard. Pin
KASR15-Jun-08 22:54
KASR15-Jun-08 22:54 
QuestionConvert .xls(Excel)File To filtered html file Using automation Pin
hitonly20085-Jun-08 20:23
hitonly20085-Jun-08 20:23 
Questionstatus bar problem Pin
Mohanraj D5-Jun-08 19:49
Mohanraj D5-Jun-08 19:49 
AnswerRe: status bar problem Pin
_AnsHUMAN_ 5-Jun-08 20:04
_AnsHUMAN_ 5-Jun-08 20:04 
AnswerRe: status bar problem Pin
Cedric Moonen5-Jun-08 20:05
Cedric Moonen5-Jun-08 20:05 
It is because you only have one thread: the message queue of your application is processed in the same thread as the rest of your application code. It means that if you do a lenghty process in one of your function, you won't be able to process messages anymore, which means your GUI seems frozen and is not updated (thus, you won't be able to see your text on the status bar). The solution is to start a new thread and put your lenghty process there. Once finished, you can send a message to your main window so that it can change the text of the status bar.

Cédric Moonen
Software developer

Charting control [v1.4]

GeneralRe: status bar problem Pin
Mohanraj D5-Jun-08 23:50
Mohanraj D5-Jun-08 23:50 
AnswerRe: status bar problem Pin
SandipG 5-Jun-08 20:09
SandipG 5-Jun-08 20:09 
AnswerRe: status bar problem Pin
sudhir_Kumar5-Jun-08 21:54
sudhir_Kumar5-Jun-08 21:54 
GeneralRe: status bar problem Pin
Cedric Moonen5-Jun-08 22:11
Cedric Moonen5-Jun-08 22:11 
GeneralRe: status bar problem Pin
sudhir_Kumar5-Jun-08 22:45
sudhir_Kumar5-Jun-08 22:45 
GeneralRe: status bar problem Pin
Cedric Moonen5-Jun-08 23:12
Cedric Moonen5-Jun-08 23:12 
GeneralRe: status bar problem Pin
Mohanraj D6-Jun-08 0:02
Mohanraj D6-Jun-08 0:02 
GeneralRe: status bar problem Pin
Cedric Moonen6-Jun-08 0:07
Cedric Moonen6-Jun-08 0:07 
GeneralRe: status bar problem Pin
Mohanraj D6-Jun-08 0:18
Mohanraj D6-Jun-08 0:18 
GeneralRe: status bar problem Pin
Cedric Moonen6-Jun-08 1:07
Cedric Moonen6-Jun-08 1:07 
GeneralRe: status bar problem Pin
Mohanraj D6-Jun-08 2:17
Mohanraj D6-Jun-08 2:17 
QuestionRe: status bar problem Pin
David Crow6-Jun-08 3:16
David Crow6-Jun-08 3:16 
AnswerRe: status bar problem Pin
Mohanraj D7-Jun-08 20:18
Mohanraj D7-Jun-08 20:18 
GeneralRe: status bar problem Pin
David Crow8-Jun-08 11:50
David Crow8-Jun-08 11:50 
GeneralRe: status bar problem Pin
Mohanraj D10-Jun-08 23:37
Mohanraj D10-Jun-08 23:37 
QuestionRe: status bar problem Pin
David Crow11-Jun-08 3:01
David Crow11-Jun-08 3:01 
AnswerRe: status bar problem Pin
Mohanraj D13-Jun-08 2:18
Mohanraj D13-Jun-08 2:18 

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.