- Re: LockSetForegroundWindow emulation on pre ME/2000
- Posted on July 18th, 2003 | 0 Comments
Perhaps you can do what you want to do with a global message hook (SetWindowsHookEx). I've found that there are very few things you can't do with SetWindowsHookEx that involve windows, threads, and...
- Re: LockSetForegroundWindow emulation on pre ME/2000
- Posted on July 18th, 2003 | 2 Comments
"John K." <john@NOSPAM.com> wrote in message news:eGLRa.184324$lK4.5231951@twister1.libero.it... Yes, AFAIK hooking SetForegroundWindow is the only way, assuming that you really want to emulate such...
- MsgWaitForMulptipleObjects() vs Sleep()
- Posted on July 18th, 2003 | 3 Comments
How do I use MsgWaitForMultipleObjects? particularly I need help with the first 2 parameters. My program is hanging on some computers (seems like only win. XP) So I am trying to find the problem, I...
- GetakeyState Problem
- Posted on July 18th, 2003 | 1 Comments
hi all im trying to use GetKeyState function to know that whether an ALT or Control key is doen or not , the function returns a value of type SHORT, but i have a confusion as in the documentation it...
- Re: malloc vs SHGetMalloc
- Posted on July 18th, 2003 | 4 Comments
Martijn wrote: If you read the documentation about SHGetMalloc, you'll see this: " This interface must be used to free memory that was allocated by the Shell or to allocate memory that will be...
- SetProp(DesktopWin) on XP Denied
- Posted on July 18th, 2003 | 0 Comments
I have just started having the strangest problem. The code ends up boiling down to the following (it is more contorted than it appears...
- Fibd the Recorder letter
- Posted on July 18th, 2003 | 2 Comments
Hello, I'm programming in C++ with Visual.Net. I'm trying to find the cdrom drive letter but I only can find the CDROM drive letter. I'm using GetLogicalDriveStrings and GetDriveType. If someone can...
- Re: [Rookie] Date-Function, calling external files. JAVA -> C
- Posted on July 18th, 2003 | 0 Comments
Raskolnikow wrote: | I have some beginner questions about C(++), | so please be gentle if the things I ask are trivial. | | What I want to do is a program (in Windows) that | - changes the current...
- IStorage
- Posted on July 18th, 2003 | 0 Comments
Hello, how can I name an Istorage with a name more than 31 char? Thanks for yours answers...
- Help need with LoadImage and getting pointer
- Posted on July 18th, 2003 | 7 Comments
Hi! Using LockResource (when loading a bitmap resource via FindResource/LoadResource) returns a pointer to a bitmap in memory. I want to get a pointer pointing to the same stuff that i get using...
- Getting a list of group permissions
- Posted on July 18th, 2003 | 0 Comments
Hi, Forgive me if I have misunderstood something, I'm fairly new at this and I am trying to wrap my head around the stuff I need to understand :) Is it possible to get a list of the groups that...
- Re: WH_CHAR multiple entries
- Posted on July 18th, 2003 | 2 Comments
"Basim Kakakhail" <basimkakakhail@yahoo.com> wrote in message news:dbd656b6.0307160507.5fc3e8a9@posting.google.com... I assume you mean that your callback gets called... :) Sure...it's Adown +...
- How to read menu settings
- Posted on July 18th, 2003 | 3 Comments
Hi All, How would I go about having my app read the menu settings of another app? For instance, take Calc.exe, how could my app read the 'View' menu to see if Standard or Scientific was selected, or...
- Changing the video driver acceleration level
- Posted on July 18th, 2003 | 1 Comments
Does anyone have any idea how to programmatically change the video driver acceleration level? I have been searching MSDN but all it ever says is: open the display control panel, select...
- RUNDLL32 eating CPU time.. only when not online!
- Posted on July 18th, 2003 | 1 Comments
Hi all, I noticed that (because of the installation of some software I can't manage to track down anymore) RUNDLL32.EXE and SERVICES.EXE eat all CPU time when the CPU would otherwise be idle.. I...
- Instance Handle of a DLL
- Posted on July 18th, 2003 | 4 Comments
My question is very simple, how do I get the instance handle (HINSTANCE) of the currently running DLL. In an exe I would just get the hInstance parameter from: int WINAPI WinMain(HINSTANCE hInstance,...
- Q: Custom draw scrollbars of a tree-view?
- Posted on July 18th, 2003 | 6 Comments
Hi, After successfully hiding the horizontal scrollbar of a tree-view control, I now want to custom draw the vertical scrollbar (if visible) of the tree-view control. I tried earlier this day...
- Re: Delete all selected tree items
- Posted on July 17th, 2003 | 0 Comments
Tree view controls don't support multiple selection, so deleting "all" (= 0 or 1) selected tree items is easy. -- Tim Robinson (MVP, Windows SDK) http://www.themobius.co.uk/ "Dmitri Zhukov"...
- Dialogs again
- Posted on July 17th, 2003 | 3 Comments
In my dialog box, I am redrawing a rectangel based on the position of sliders. I use this code to see if the sliders have moved case WM_VSCROLL : GetWindowRect(hDlg, &rect); InvalidateRect(hDlg,...
- Dumping lots of floats to file
- Posted on July 17th, 2003 | 2 Comments
hi there, I am trying to dump a lot of floats to a file and want to save space. Here is my main loop which is looped several thousand times fprintf(fptr, "%f %f %f ", normals, normals, normals);...

