I want to know where can I find the constant pre-defined in windows? How can I know wm_sizing = &H214? I've tried in find in msdn from microsoft but only to find nothing... If anyone knows?
Printable View
I want to know where can I find the constant pre-defined in windows? How can I know wm_sizing = &H214? I've tried in find in msdn from microsoft but only to find nothing... If anyone knows?
try the API viewer that comes with VB, or the better one from www.allapi.net
You can also find them in the correct C++ header files if you have them.
:)
There's a list of the WM_ constants here
If you have C++ and the windows.h file, you can create a small program to help you out.
Code:#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
cout << WM_CLOSE; /* replace with your message */
return 0;
}