Do Class Modules have constructors & Destructors?

T

Tushar Mehta

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

Private Sub Class_Initialize()
---
end sub

Private Sub Class_Terminate()
....
end sub

HTH,
TC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top