-
Is the intelisense feature supposed to be available when referencing a class module?
I created a Class module named Empoyees and instantiated it from Form1 like:
Code:
Dim oEmp as Employees
Set oEmp = New Employees
but when I try to reference a property within the class such as "Name", the intelisense feature does not pop up the "Name" property after entering "oEmp." in the code..
Am I doing something wrong? Shouldn't the intelisense feature work in this situation?
any help would be appreciated..
Dan
-
Sometimes VB is a little slow in picking up user defined class properties. Close the project and reopen it and I bet that intellisense will work.
-
If the class is implemented as a DLL as long as the .dll is registered on your machine, go to to project - references and set a reference to your .dll. Intellisense will then find it.
Otherwise just reload VB.
[Edited by MadWorm on 11-27-2000 at 06:17 PM]