|
-
Sep 14th, 2000, 08:02 AM
#1
Thread Starter
Member
I am creating a simple project.
The project has a form module and a class module.
The class module has only two pair property procedures: LastName and FirstName.
The class is named MyClass
In the Form Module I create two instances of the class module:
Early Binding:
Public InstanceOne as New MyClass
Late Binding:
Public InstanceTwo as Object
Set InstanceTwo = New MyClass
Now when I go to reference the properties in my form I get a drop down menu of available properties for InstanceOne but NOT for InstanceTwo. (The available properties being FirstName and LastName). Both work fine, but only the one declared with early binding gives me that handy menu. Is something wrong here or is this just life?
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
|