PDA

Click to See Complete Forum and Search --> : about const help!


yuxinchen
Feb 15th, 2002, 10:37 AM
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! :mad:

Hack
Feb 15th, 2002, 11:54 AM
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/

Megatron
Feb 15th, 2002, 03:31 PM
You could create a C++ program to help you find the value of some constants e.g.

#include <iostream>
using namespace std;

int main()
{
cout << MY_CONSTANT;
return 0;
}