-
Hi,
For some reason, the API view with VB is missing the constant:
WM_EXITSIZEMOVE
I guess the api text file is not a complete list.. anyway, I do have C++ installed so would I be able to find this constant defined in any of the .h files? If so, which one?
Or, is it on MSDN somewhere? I have the MSDN universal subscription.. Or, is it on MSDN's web site? I found a reference to WM_EXITSIZEMOVE under "Windows Messaging" but no where does it define it's constant..
Any help would be appreciated..
Dan
-
It's in winuser.h, I got it with the MS Platform SDK, anyway here you go:
Code:
'#define WM_EXITSIZEMOVE 0x0232
'Translates as:
Private Const WM_EXITSIZEMOVE = &H232
hth