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:
Printable View
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:
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/
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;
}