If your offer's still open... I'd like to live in Brazil, somewhere near the equator, around say Maceio. Why? It's warm? Because that's where I'll be moving anyhow in a few weeks. It seems like a nice enough place. pcanderson1 at hotmail dot com
philliad
Posts
-
6 Gmail Invites - I have got 5 left -
Setting Priority ClassThanks for your help! Your solution works great! Thanks, Phillip
-
Setting Priority ClassHello, all. I'm trying to have the program I'm writing raise its class and thread priorities on a button click. I can change the thread priorities just fine, but I'm having trouble with the priority class. Here's the code from the function that I'm using to change the priorities: HANDLE Hand; BOOL Check; DWORD Error; Hand = GetCurrentThread(); Check = SetPriorityClass(Hand, HIGH_PRIORITY_CLASS); Error = GetLastError(); Check = SetThreadPriority(Hand, THREAD_PRIORITY_HIGHEST); Error = GetLastError(); Does anybody have any idea why I can change the thread priority but not the priority class? Thanks, Phillip
-
Easy menu/modal dialog questionFixed it! Thanks. (I didn't include the header -duh!) Phillip
-
Easy menu/modal dialog questionerror C2065: 'CDialogRates' : undeclared identifier It doesn't seem to recognize CDialogRates as a valid class. :mad: Phillip
-
Easy menu/modal dialog questionI've made the menu, made the handler for the menu item, and made the actual dialog box (and a corresponding class). I'm having trouble making an instance of the dialog class and calling DoModal for some reason. It's quite baffling, actually. Phillip
-
Easy menu/modal dialog questionIn an application I'm making I need to use a menu to launch a modal dialog box. I seem to be struggling a bit with this task. How do I do it?!?! Thanks! Phillip
-
Interrupt handlingI'm working on a project that needs VERY accurate timing (to an order that none of the built-in windows timers will work). I have a card that I'm getting count information from that is also able to produce accurate timing counts in the form of interrupts. Unfortunately for me :~ , I've never done anything at all with interrupt handling! All the information I've seen thus far shoots right over my head. Can anybody help? Articles, links, code, tutorials, anything appreciated. Thanks! Phil A.