Results 1 to 4 of 4

Thread: How to find windows constants

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 2002
    Posts
    7

    Unhappy How to find windows constants

    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?

  2. #2
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091
    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.

    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

  3. #3
    Frenzied Member MerrionComputin's Avatar
    Join Date
    Apr 2001
    Location
    Dublin, Ireland
    Posts
    1,616
    There's a list of the WM_ constants here
    ----8<---------------------------------------
    NEW - The .NET printer queue monitor component
    ----8<---------------------------------------
    Now with Examples of use

  4. #4
    Software Eng. Megatron's Avatar
    Join Date
    Mar 1999
    Location
    Canada
    Posts
    11,286
    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;
    }

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