And if so, how are they implemented? TIA Scott
T Tushar Mehta Dec 22, 2005 #2 In VBA a class module has the Initialize and the Terminate methods. Neither accepts a argument. -- Regards, Tushar Mehta www.tushar-mehta.com Excel, PowerPoint, and VBA add-ins, tutorials Custom MS Office productivity solutions
In VBA a class module has the Initialize and the Terminate methods. Neither accepts a argument. -- Regards, Tushar Mehta www.tushar-mehta.com Excel, PowerPoint, and VBA add-ins, tutorials Custom MS Office productivity solutions
T TC Dec 23, 2005 #3 Private Sub Class_Initialize() --- end sub Private Sub Class_Terminate() .... end sub HTH, TC