Friday, May 16, 2008

What are three ways to create an object to access an external component?

Dim ObjectVariable As New Class
Set ObjectVariable = New Class
Set ObjectVariable = CreateObject("Component.Class")

Your Title