Using objects across forms

  • Thread starter Thread starter Ivan Quintero
  • Start date Start date
I

Ivan Quintero

Is there a way to declare an object in one form and be
able to use it on other forms?
 
Ivan Quintero said:
Is there a way to declare an object in one form and be
able to use it on other forms?

It would have to be declared Public at the module level, and external
references would have to be qualified by a reference to the form that
owns it. I'm not sure whether you have to set up a private object
variable with public Property Set and and Property Get procedures to
access it.

What exactly did you have in mind? What sort of object are we talking
about?
 
Back
Top