Share data

  • Thread starter Thread starter csharpula csharp
  • Start date Start date
C

csharpula csharp

Hello,
I want to share some data between my classes.
All of the classes may get or set this data .
The Application is Gui application and each tab of it is a class , there
is a data which is mutual to all classes such as if im Tab 1 a user will
upload a file ,the name of this file suppose to be avalible to all the
other Tabs (classes).
How can I slove this ?
Thanks!
 
Hello,
I want to share some data between my classes.
All of the classes may get or set this data .
The Application is Gui application and each tab of it is a class , there
is a data which is mutual to all classes such as if im Tab 1 a user will
upload a file ,the name of this file suppose to be avalible to all the
other Tabs (classes).
How can I slove this ?
Thanks!

*** Sent via Developersdexhttp://www.developersdex.com***

It could be done using a custom class with static properties.
For more details see the link:
http://support.microsoft.com/kb/815778
 
Back
Top