PDA

Click to See Complete Forum and Search --> : help locating winapi constant


softwareguy74
Nov 20th, 2000, 10:07 PM
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

crispin
Nov 21st, 2000, 06:08 AM
It's in winuser.h, I got it with the MS Platform SDK, anyway here you go:


'#define WM_EXITSIZEMOVE 0x0232
'Translates as:
Private Const WM_EXITSIZEMOVE = &H232


hth