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

C / C++ / MFC

 
GeneralRe: Pointer Pin
dehseth2-Mar-09 7:31
dehseth2-Mar-09 7:31 
GeneralRe: Pointer Pin
Stuart Dootson2-Mar-09 8:07
professionalStuart Dootson2-Mar-09 8:07 
Questionhow to fill out fields in a third party program's GUI window Pin
Tanveer Ansari 12-Mar-09 3:17
Tanveer Ansari 12-Mar-09 3:17 
AnswerRe: how to fill out fields in a third party program's GUI window Pin
Perisic, Aleksandar2-Mar-09 6:02
Perisic, Aleksandar2-Mar-09 6:02 
Questionquestion about structured storages Pin
rkata2-Mar-09 2:38
rkata2-Mar-09 2:38 
AnswerRe: question about structured storages Pin
led mike2-Mar-09 4:10
led mike2-Mar-09 4:10 
QuestionError message Pin
vanishaa2-Mar-09 2:26
vanishaa2-Mar-09 2:26 
AnswerRe: Error message Pin
CPallini2-Mar-09 2:54
mveCPallini2-Mar-09 2:54 
AnswerRe: Error message Pin
David Crow2-Mar-09 3:06
David Crow2-Mar-09 3:06 
GeneralRe: Error message Pin
vanishaa2-Mar-09 3:13
vanishaa2-Mar-09 3:13 
GeneralRe: Error message Pin
David Crow2-Mar-09 3:16
David Crow2-Mar-09 3:16 
GeneralRe: Error message Pin
vanishaa2-Mar-09 3:28
vanishaa2-Mar-09 3:28 
GeneralRe: Error message Pin
David Crow2-Mar-09 3:31
David Crow2-Mar-09 3:31 
Questionparellel mutithread problem Pin
JackPuppy2-Mar-09 1:53
JackPuppy2-Mar-09 1:53 
AnswerRe: parellel mutithread problem Pin
Code-o-mat2-Mar-09 2:15
Code-o-mat2-Mar-09 2:15 
Do you ever release the mutexes you lock with WaitForSingleObject? Once you are done with it you should call ReleaseMutex[^]. Anyways, the high CPU usage can mean 2 things i think: you either make too many threads, or one or more of your threads are stuck in an infinite loop. Once your program is eating all the CPU power use your debugger to break execution and check what your threads are doing. If there are a lot of items you need to process you are probably better off using a few threads and queuing the items to them rather then creating a hundred-and-twenty-five threads for each and every item you want to process.

> The problem with computers is that they do what you tell them to do and not what you want them to do. <
> Life: great graphics, but the gameplay sux. <

GeneralRe: parellel mutithread problem Pin
JackPuppy2-Mar-09 2:31
JackPuppy2-Mar-09 2:31 
GeneralRe: parellel mutithread problem Pin
Code-o-mat2-Mar-09 2:36
Code-o-mat2-Mar-09 2:36 
Questionhow to include a paneld inside the client area in SDI architect? Pin
Joseph Marzbani2-Mar-09 1:25
Joseph Marzbani2-Mar-09 1:25 
AnswerRe: how to include a paneld inside the client area in SDI architect? Pin
Stuart Dootson2-Mar-09 3:32
professionalStuart Dootson2-Mar-09 3:32 
GeneralRe: how to include a paneld inside the client area in SDI architect? Pin
Joseph Marzbani2-Mar-09 6:59
Joseph Marzbani2-Mar-09 6:59 
QuestionHow C++ read one digit each time from a sequence of digits? Pin
followait2-Mar-09 0:28
followait2-Mar-09 0:28 
AnswerRe: How C++ read one digit each time from a sequence of digits? Pin
_AnsHUMAN_ 2-Mar-09 0:37
_AnsHUMAN_ 2-Mar-09 0:37 
GeneralRe: How C++ read one digit each time from a sequence of digits? Pin
followait2-Mar-09 0:38
followait2-Mar-09 0:38 
GeneralRe: How C++ read one digit each time from a sequence of digits? Pin
_AnsHUMAN_ 2-Mar-09 0:48
_AnsHUMAN_ 2-Mar-09 0:48 
GeneralRe: How C++ read one digit each time from a sequence of digits? Pin
followait2-Mar-09 0:57
followait2-Mar-09 0:57 

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.