How to monitor dataset from dll

  • Thread starter Thread starter Lennart Nielsen
  • Start date Start date
L

Lennart Nielsen

I have multiple instances of a usercontrol each of which monitors (through
dataviews) a table in a dataset. When the data in the table changes the
controls react. This all works fine as long as the usercontrols are part of
the project and can reference the dataset directly, but if I put the
usercontrols in a control library (dll) then they can no longer reference
the dataset directly.

How do I go about making the reference (rather than a copy of the dataset)?

Lennart
 
I would place the dataset in it's own project, and have all the other
project reference it.
 
Back
Top