I'v seen different manners of creating objects and some use late and early in same function (my opinion).
So can someone tell me what is early and what is late from the following examles.
VB Code:
Dim myC As MyCls.MyFun Set myC = CreateObject("MyCls.MyFun") Dim myC As MyCls.MyFun Set myC = New MyCls.MyFun Dim myC As Object Set myC = CreateObject("MyCls.MyFun")




Reply With Quote