Results 1 to 3 of 3

Thread: about const help!

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2002
    Location
    Tianjin,P.R.C
    Posts
    4

    Question about const help!

    I am a newbie.Now I'm using API in vb's project,my question:I want to know what meaning about"const",such as "private const LB_FINDSTRING=&H194". Would you tell me from where I find ? Thanks a lot!

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333
    Const is short for Constant. It means just that. It is a value that does not change once it is set.

    Many APIs have constants associated with them. Download the API Viewer (free) from http://www.allapi.net/

  3. #3
    Megatron
    Guest
    You could create a C++ program to help you find the value of some constants e.g.
    Code:
    #include <iostream>
    using namespace std;
    
    int main()
    {
        cout << MY_CONSTANT;
        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