My own Collection which is always in scope

  • Thread starter Thread starter paul.schrum
  • Start date Start date
P

paul.schrum

Is there a way that I can instantiate a Collection that is not a member
of any form, but is accessible to all my forms?

Thanks.

- Paul
 
Is there a way that I can instantiate a Collection that is not a
member of any form, but is accessible to all my forms?

Declare it in a standard module and use the Public keyword. For
example,

Public colMyCollection As Collection
 
Back
Top