Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Windows message 59
Name: Mo22 Date: September 6, 2002 at 01:19:09 Pacific OS: W2K CPU/Ram: ? + 256M
Comment:
Hello all. Does anyone know what the name is for message that is sent by windows prior to shutdown or user-logoff. It's not WM_QUERYENDSESSION nor WM_ENDSESSION. This message has value decimal 59 and comes by before these two. I coded Msg.Msg = 59 but would like to use the constant name in stead of hardcoding value 59. I'm using Delphi3. Thanks in advance for any help.
There a numerous others sites that you can see by entering "DELPHI WM_QUERYENDSESSION" in the search box at google.com.
good luck.
There are
0
Response Number 2
Name: Jeff J Date: September 6, 2002 at 09:37:32 Pacific
Reply:
My hat is off to you for making your code more readable. Windows WM_* definitions are mostly clustered together into a single text file. In C/C++ they are located in winuser.h. I don't have a copy of Delphi in front of me at the moment, but you can just do a quick search for the .pas file. Look in your Delphi dir for a file with the text WM_COMPAREITEM or some other message in it. Open the file and search for the number you want (they're in order, and typically in hex). That should work for all your future needs too.
Summary: Hi: Is there a windows message created in a scenario when the ip address of the machine changes ?? Lets say the machine is disconnected from one nw and hooked on another, which will change its ip.. in...
Summary: does anyone know how to hold message on window console so that the message will not be erase when moving about,I use TextOut to print a message to window, tks. ...
Summary: Ok first off Im still a big beginner at C++. So lets see HINSTANCE stands for Handle to Instance. Meaning its a handle (sort of like a pointer...all windows objects are accessed through these handles)...