View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Gary F Gary F is offline
external usenet poster
 
Posts: 10
Default Constructors for Classes

Every so often I want to create a class in VBA, but VBA doesn't seem to have
the concept of a constructor for the class - so you have to (1) call NEW, (2)
makes sure that the caller sets up the object right.

I'm sure there's an approach for simulating the above (a pattern). Can
someone share it?

Thanks!