I want some constants for my DLL to show up in the project browser,, how to accomplish this?
Disiance
Printable View
I want some constants for my DLL to show up in the project browser,, how to accomplish this?
Disiance
Which constants? What do you mean "Have them show up in the project browser"?
I have some constants in a module in a DLL I'm creating
When someone adds the DLL as a reference I would like the constants to show up in the project browser (press F2 in VB) so that the user can see what constants are available to use.
Disiance
What language is the DLL written in? C++, VB?
Visual Basic
I don't know that VB6 is capable of this. Did you try to make them Public in a module? I'm not sure that would even do it.
I put them into a module as 'Public Const's, there's no way to specify the module itself as public or not. Perhaps I should run down to the library and pick up a book, thanks for your help.
Disiance