Click here to Skip to main content
16,005,491 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: DrawText function to align mulitipile lines of text vertically and horizontally Pin
Prasann Mayekar15-Jan-09 21:53
Prasann Mayekar15-Jan-09 21:53 
AnswerRe: DrawText function to align mulitipile lines of text vertically and horizontally Pin
Iain Clarke, Warrior Programmer15-Jan-09 23:51
Iain Clarke, Warrior Programmer15-Jan-09 23:51 
GeneralRe: DrawText function to align mulitipile lines of text vertically and horizontally[Resolved] Pin
Priya_Sundar18-Jan-09 17:24
Priya_Sundar18-Jan-09 17:24 
QuestionFiles And Folder Size Pin
newhivc15-Jan-09 19:40
newhivc15-Jan-09 19:40 
AnswerRe: Files And Folder Size Pin
SandipG 15-Jan-09 20:05
SandipG 15-Jan-09 20:05 
AnswerRe: Files And Folder Size Pin
Hamid_RT15-Jan-09 20:12
Hamid_RT15-Jan-09 20:12 
Questionwhat should minimum processor spacification for multimediea timers?? Pin
anilaabc15-Jan-09 19:35
anilaabc15-Jan-09 19:35 
AnswerRe: what should minimum processor spacification for multimediea timers?? Pin
Roger Stoltz15-Jan-09 22:15
Roger Stoltz15-Jan-09 22:15 
anilaabc wrote:
but when we run our project on "intel(R)Celeron(R) CPU 2.39 GHz",1GH RAM
project became slow


Well, that's to be expected if your application is able to benefit from multiple cores, even though the clock frequency is increased a bit.


anilaabc wrote:
not capturing events properly (mouse events) and application is not synchronized and works irregular


This is suspicious and has nothing to do with multimedia timers. It suggests that you have developed a nice bug somewhere.
The first thing I would look for is threads having their priority set to THREAD_PRIORITY_TIME_CRITICAL, or even that the process is running at a higher priority than NORMAL_PRIORITY_CLASS.
Bumping the priority of a thread or process that consumes a lot a CPU time is always wrong and would lead to the consequences you're describing.
If this is the case, then the reason it works better on a multiple core machine is that one core handles the e.g. mouse input, while the other core is executing the the high prioritized thread doing nothing else.


"It's supposed to be hard, otherwise anybody could do it!" - selfquote
"High speed never compensates for wrong direction!" - unknown


AnswerRe: what should minimum processor spacification for multimediea timers?? Pin
Mark Salsbery16-Jan-09 7:18
Mark Salsbery16-Jan-09 7:18 
GeneralRe: what should minimum processor spacification for multimediea timers?? Pin
Roger Stoltz16-Jan-09 9:12
Roger Stoltz16-Jan-09 9:12 
QuestionCreateKey returned 6 Pin
subramanyeswari15-Jan-09 18:12
subramanyeswari15-Jan-09 18:12 
AnswerRe: CreateKey returned 6 Pin
Hamid_RT15-Jan-09 20:19
Hamid_RT15-Jan-09 20:19 
QuestionApplication hangs when trying to open comport Pin
sunny_vc15-Jan-09 14:40
sunny_vc15-Jan-09 14:40 
AnswerRe: Application hangs when trying to open comport Pin
Roger Stoltz15-Jan-09 22:32
Roger Stoltz15-Jan-09 22:32 
AnswerRe: Application hangs when trying to open comport Pin
CPallini15-Jan-09 23:16
mveCPallini15-Jan-09 23:16 
Questionhow to call default drawing when I use owner_draw? Pin
flyingxu15-Jan-09 14:07
flyingxu15-Jan-09 14:07 
AnswerRe: how to call default drawing when I use owner_draw? Pin
Maximilien15-Jan-09 15:45
Maximilien15-Jan-09 15:45 
AnswerRe: how to call default drawing when I use owner_draw? Pin
Naveen15-Jan-09 16:34
Naveen15-Jan-09 16:34 
AnswerRe: how to call default drawing when I use owner_draw? Pin
Stuart Dootson15-Jan-09 21:52
professionalStuart Dootson15-Jan-09 21:52 
QuestionVC++ 6.0 and 64 bit Pin
D_code_writer15-Jan-09 13:39
D_code_writer15-Jan-09 13:39 
QuestionRe: VC++ 6.0 and 64 bit Pin
Randor 15-Jan-09 16:41
professional Randor 15-Jan-09 16:41 
AnswerRe: VC++ 6.0 and 64 bit Pin
«_Superman_»15-Jan-09 18:35
professional«_Superman_»15-Jan-09 18:35 
GeneralRe: VC++ 6.0 and 64 bit Pin
D_code_writer15-Jan-09 19:50
D_code_writer15-Jan-09 19:50 
GeneralRe: VC++ 6.0 and 64 bit Pin
«_Superman_»15-Jan-09 19:53
professional«_Superman_»15-Jan-09 19:53 
GeneralRe: VC++ 6.0 and 64 bit Pin
Randor 16-Jan-09 4:06
professional Randor 16-Jan-09 4:06 

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.