There isn't a way in the plain windows API to make dialog controls move as a group. A child window will move with its parent, but a group control does not act as a parent window.
When you say "service exe," do you mean you are running your process as a service? What happens if you set up your service to run under your own account instead of the system account?
It's probably using its own menu implementation, not built-in menus. Notice that the menu style is different too. Also notice that it's not using WM_COMMAND to signal the menu selections. You will...
What I would do is:
1. Subclass the application's main window.
2. Look for WM_PAINT
- Pass message to original window function, then add your own drawing afterwards.
3. Pass on all other...
FWIW, Charles Petzold's books explain things in almost the exact manner Typewriter suggested. Highly recommended if you are looking for a comprehensive but comprehensible introduction.
Just-in-time debugging is only used to attach to an already running process. You can debug your program by just running the process in the debugger directly.
I don't understand how your app can work, on Vista or anywhere else. A cookie is initiated by the server. A cookie set by the client will be ignored by the server.
The key is probably created, but not where you think it's created. Vista uses virtualization, so that if you write to protected areas, such as under the HKLM registry root, or the Program Files...
That's correct. For an on-screen DC, the relevant size is that of the client area of the window. For an in-memory DC, the relevant size is that of the bitmap currently selected into the DC.
There could be any number of things going on. I suggest you go to the http://msdn2.microsoft.com/en-us/windowsvista/aa904987.aspx
Application Compatibility web site and check out the "Cookbook"...
Yes, getting two different modules to encrypt in the same way really can be frustrating, especially when the two modules are written in different languages. I've had to do that before, aligning...
Your basic problem is that there is no such thing as a "paste event." There is a command event, but a command that means "paste" to one app may mean "print" to another.