Click here to Skip to main content
15,920,633 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralVisualStudio - ClassView / Gloabs : missed functions Pin
Lockhart17-Sep-02 6:29
Lockhart17-Sep-02 6:29 
GeneralRe: VisualStudio - ClassView / Gloabs : missed functions Pin
Joaquín M López Muñoz17-Sep-02 6:39
Joaquín M López Muñoz17-Sep-02 6:39 
GeneralRe: VisualStudio - ClassView / Gloabs : missed functions Pin
Lockhart17-Sep-02 7:34
Lockhart17-Sep-02 7:34 
GeneralRe: VisualStudio - ClassView / Gloabs : missed functions Pin
TyMatthews17-Sep-02 8:51
TyMatthews17-Sep-02 8:51 
GeneralRe: VisualStudio - ClassView / Gloabs : missed functions Pin
Lockhart17-Sep-02 10:51
Lockhart17-Sep-02 10:51 
QuestionHow to programmatically disable network card Pin
Jonathan Gilligan17-Sep-02 6:27
Jonathan Gilligan17-Sep-02 6:27 
AnswerRe: How to programmatically disable network card Pin
jmkhael17-Sep-02 6:38
jmkhael17-Sep-02 6:38 
AnswerRe: How to programmatically disable network card Pin
TyMatthews17-Sep-02 9:04
TyMatthews17-Sep-02 9:04 
While not an answer to your question, have you looked at maybe using CreateProcess() to start your app in REALTIME mode? This will give you the highest possible priority, above nearly everything else, without having to disable other processes or drivers. You could write a little proxy application whose sole job is to launch your actual app by calling CreateProcess() with a creation flag of REALTIME_PRIORITY_CLASS.

Just a word of caution, of course... if you do it this way you will have priority above even disk I/O. Like the friendly manual states, if your process runs for more than a very brief interval, you can "cause disk caches not to flush or cause the mouse to be unresponsive."

If REALTIME is too much, there are also HIGH_PRIORITY_CLASS and ABOVE_NORMAL_PRIORITY_CLASS (Win2000) flags that are not quite as severe, but still preempt normal apps. Just take a gander at the CreateProcess() docs.


Ty


"The significant problems we face cannot be solved at the same level of thinking we were at when we created them." -Albert Einstein


GeneralRe: How to programmatically disable network card Pin
Jonathan Gilligan17-Sep-02 9:42
Jonathan Gilligan17-Sep-02 9:42 
GeneralRe: How to programmatically disable network card Pin
TyMatthews18-Sep-02 4:42
TyMatthews18-Sep-02 4:42 
GeneralRe: How to programmatically disable network card Pin
Jonathan Gilligan18-Sep-02 6:05
Jonathan Gilligan18-Sep-02 6:05 
GeneralRe: How to programmatically disable network card Pin
TyMatthews18-Sep-02 6:09
TyMatthews18-Sep-02 6:09 
AnswerRe: How to programmatically disable network card Pin
PJ Arends17-Sep-02 14:57
professionalPJ Arends17-Sep-02 14:57 
GeneralDataExchange Pin
Steve Daly17-Sep-02 5:52
Steve Daly17-Sep-02 5:52 
GeneralRe: DataExchange Pin
Joaquín M López Muñoz17-Sep-02 6:11
Joaquín M López Muñoz17-Sep-02 6:11 
QuestionSystem tray ALERTS ?? Pin
petrol17-Sep-02 5:40
petrol17-Sep-02 5:40 
AnswerRe: System tray ALERTS ?? Pin
jmkhael17-Sep-02 6:42
jmkhael17-Sep-02 6:42 
GeneralMFC42.dll Pin
orcun colak17-Sep-02 5:26
orcun colak17-Sep-02 5:26 
GeneralRe: MFC42.dll Pin
Pavel Klocek17-Sep-02 6:39
Pavel Klocek17-Sep-02 6:39 
GeneralUpdating and changing Title Bar in Application Pin
oRion17-Sep-02 5:21
oRion17-Sep-02 5:21 
GeneralRe: Updating and changing Title Bar in Application Pin
jmkhael17-Sep-02 6:35
jmkhael17-Sep-02 6:35 
GeneralRe: Updating and changing Title Bar in Application Pin
oRion17-Sep-02 22:27
oRion17-Sep-02 22:27 
Questionhow to recognize word from sentence? Pin
wey_horng17-Sep-02 5:12
wey_horng17-Sep-02 5:12 
AnswerRe: how to recognize word from sentence? Pin
Shaun Wilde17-Sep-02 5:20
Shaun Wilde17-Sep-02 5:20 
GeneralRe: how to recognize word from sentence? Pin
Bart Robeyns17-Sep-02 5:30
Bart Robeyns17-Sep-02 5:30 

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.