Results 1 to 2 of 2

Thread: help locating winapi constant

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Aug 2000
    Posts
    1,091
    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

  2. #2
    Fanatic Member crispin's Avatar
    Join Date
    Aug 2000
    Location
    2 clicks west of a Quirkafleeg...Cornwall, England
    Posts
    754
    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
    Crispin
    VB6 ENT SP5
    VB.NET
    W2K ADV SVR SP3
    WWW.BLOCKSOFT.CO.UK

    [Microsoft Basic: 1976-2001, RIP]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width