Shared Data

  • Thread starter Thread starter Andrew Robinson
  • Start date Start date
A

Andrew Robinson

I am working on a forms based application that will have 3 or 4 different
forms. I need to share a data set between them that can be updated by each
or the forms. What is the best way to do this? How can I instantiate a class
that is available to each of these forms?

thanks,

-Andrew
 
* "Andrew Robinson said:
I am working on a forms based application that will have 3 or 4 different
forms. I need to share a data set between them that can be updated by each
or the forms. What is the best way to do this? How can I instantiate a class
that is available to each of these forms?

Pass a reference to the forms (for example in a property) when
after instantiating and before showing it.
 
Back
Top