|
-
Feb 15th, 2002, 11:37 AM
#1
Thread Starter
New Member
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!
-
Feb 15th, 2002, 12:54 PM
#2
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/
-
Feb 15th, 2002, 04:31 PM
#3
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|