- Threads and forms
- Posted on September 8th, 2003 | 0 Comments
I'm trying to update a form asynchronously (i.e., from a callback function than from the main thread). However, the form dies when I try to do this. What might the problem be? (I'm using Borland...
- Re: How to check if service pack 1 is installed on Windows XP
- Posted on September 8th, 2003 | 0 Comments
patrikmjohansson@yahoo.se (Patrik Johansson) wrote in message news:<8d5c526d.0309072248.19e1789f@posting.google.com>... For windows 2000 BOOL GetVersionEx(POSVERSIONINFO pVersionInformation); This...
- Notify on Ballon tooltip close?
- Posted on September 8th, 2003 | 1 Comments
Hey, I have a tray icon application that creates a balloon tooltip on the tray icon on certain conditions. I get the NIN_BALLOONUSERCLICK, if a user clicks on the balloon. But I want to get the...
- Trapping WM_SYSCHAR and ALT keys
- Posted on September 8th, 2003 | 0 Comments
I'd like ALT-F to pop up the File menu even if the focus is in a child dialog. I can assign it to an accelerator, which gets control no matter the focus, but then I can't figure our how to force...
- Tool to optimize ACLs?
- Posted on September 8th, 2003 | 0 Comments
Is there any tool (free or cheap) to optimize the ACLs assigned to files and directories? It seems to be very common on our file servers that even if they are Win2k based and thus support inherited...
- PostMessage problem
- Posted on September 8th, 2003 | 4 Comments
Hi, I'm having a problem with PostMessage. To skip to the chase, I post two user-defined messages, WM_A and WM_B, to the same window (WM_A followed immediately by WM_B): PostMessage(hWnd, WM_A, 0,...
- Can the removable disk (flash card) be multipartitioned?
- Posted on September 8th, 2003 | 19 Comments
Hi everybody! I need to format the flash card to be multipartitioned (two partitions needed) with FAT file system. But the Windows Disk Manager does not permit to format removable disk (flash card)...
- Getting a handle's owner thread/process
- Posted on September 7th, 2003 | 0 Comments
Is there any way I can get the thread or process of a handle created (in this case a mutex)? Cheers, Dan.
- memory addressing and mapping
- Posted on September 7th, 2003 | 1 Comments
I have a file that contains the entire memory image from a computer running a proprietary operating system. The memory size is 64MB, so the addressing of it is from 0x00000000 to 0x04000000. A chunk...
- Re: PostQuitMessage(0) seems not to work in case WM_DESTROY:
- Posted on September 6th, 2003 | 9 Comments
PostQuitMessage generally works, even inside WM_DESTROY handling. Maybe there's a problem with your message loop -- you should post that, too. -- Tim Robinson (MVP, Windows...
- winhelp and buttons
- Posted on September 6th, 2003 | 3 Comments
Hello, I'm very confused! Normally, every button sends a WM_COMMAND message. But winhelp doesn't seem to do that. What I do a Spy+ on a winhelp window (even on the button in the title bar itself)...
- Layered service providers tutorials
- Posted on September 6th, 2003 | 0 Comments
Aside from the MSDN article "Unraveling the Mysteries of Writing a Winsock 2 Layered Service Provider", does anyone know if there are any other books or literature on the Internet that explain how to...
- Mouse capture
- Posted on September 6th, 2003 | 1 Comments
I want to detect when my program loses mouse capture (ie. another window is selected). I tried the WM_CAPTURECHANGE message, but it seems to only detect when capture is regained. How do I get the...
- Re: loadimage() in console?
- Posted on September 5th, 2003 | 2 Comments
"Edward" <bab53c@yahoo.com> wrote in message news:1f0226b5.0309041641.352b1856@posting.google.com... Where do you want to add it? You give LoadImage a path, it gives you an HBITMAP (or HICON, or...
- Converting UNC paths to URI
- Posted on September 5th, 2003 | 2 Comments
Hi folks, I'm developing an application using the Xerces-C++ XML parser. Setting the schema requires a URI, and the location of our schemas is configurable, and really could be on any file server on...
- Re: wWinMain and wmain??
- Posted on September 5th, 2003 | 0 Comments
Hi all, Both wWinMain and wmain are functions to be implemented by the application. From the Win32 view point neither wWinMain nor wmain (nor also neither WinMain nor main) really exists: all images...
- Re: loadimage() in console?
- Posted on September 5th, 2003 | 0 Comments
On 4 Sep 2003 17:41:55 -0700, bab53c@yahoo.com (Edward) wrote: This is so trivial that it's difficult to see where you might have gone wrong, especially since you don't provide any information...
- Re: wWinMain and wmain??
- Posted on September 4th, 2003 | 1 Comments
wmain is part of the C and C++ languages. wWinMain is one of Microsoft's extensions to C/C++. They don't show up in the Platform SDK because they're not part of any API; you have to write them...
- how to find NT-domain name programmatically?
- Posted on September 4th, 2003 | 1 Comments
Hi, How do I find the name of the NT-domain to which a workstation belongs within a program? On MSDN I found the function DsGetDcName() which provides information on the domain controller and the...
- Measuring memory fragmentation
- Posted on September 4th, 2003 | 1 Comments
Does anyone know of a tool for measuring or illustrating the degree of memory fragmentation in an application's heap? TIA -- Jim Johnson

