message associted with number 131?
-
I want to know which message is associted with number 131?
-
I want to know which message is associted with number 131?
Hello VCD, Could you please elaborate your question? which message do you mean? Error Message or Window Message? Regards, Jijo.
_____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.
-
I want to know which message is associted with number 131?
The value which you have given 131, if it is in Decimal format, the HEX equivalent of that is 0x0083, and its stands for WM_NCCALCSIZE message. You can check below link for more details: http://msdn.microsoft.com/en-us/library/ms632634(VS.85).aspx#\[[^](http://msdn.microsoft.com/en-us/library/ms632634\(VS.85\).aspx# "New Window")] Regards
-
Hello VCD, Could you please elaborate your question? which message do you mean? Error Message or Window Message? Regards, Jijo.
_____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.
I'm talking about the window message, I want a list of all message with respective numbers that msg Q uses? when I'm debugging I'm getting only numbers I want the message name too.
-
The value which you have given 131, if it is in Decimal format, the HEX equivalent of that is 0x0083, and its stands for WM_NCCALCSIZE message. You can check below link for more details: http://msdn.microsoft.com/en-us/library/ms632634(VS.85).aspx#\[[^](http://msdn.microsoft.com/en-us/library/ms632634\(VS.85\).aspx# "New Window")] Regards
would you plz tell me how did you know that this message is associated with 131 number?
-
The value which you have given 131, if it is in Decimal format, the HEX equivalent of that is 0x0083, and its stands for WM_NCCALCSIZE message. You can check below link for more details: http://msdn.microsoft.com/en-us/library/ms632634(VS.85).aspx#\[[^](http://msdn.microsoft.com/en-us/library/ms632634\(VS.85\).aspx# "New Window")] Regards
You can get all Windows message values in WinUser.h file, in your include directory :)
-
would you plz tell me how did you know that this message is associated with 131 number?
Linkety[^] But that's for Winuser.h .. You should know on what context you are searching that number and search in the corresponding .h file. If it's an error constant, there's one:Check here[^]
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
-
would you plz tell me how did you know that this message is associated with 131 number?
First let me know, the value 131, which u have given in Decimal format or HEX format.
-
I'm talking about the window message, I want a list of all message with respective numbers that msg Q uses? when I'm debugging I'm getting only numbers I want the message name too.
VCD_A wrote:
when I'm debugging I'm getting only numbers I want the message name too.
Typing @eax,wm into debugger watch window helps sometimes!
Nibu babu thomas Microsoft MVP for VC++ Code must be written to be read, not by the compiler, but by another human being. Programming Blog: http://nibuthomas.wordpress.com
-
I want to know which message is associted with number 131?
VCD_A wrote:
I want to know which message is associted with number 131?
"Abort, retry, ignore?"