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?