J
John
Hi,
I have inhereted CollectionBase to store a data that is continuously
(every few seconds) updated (entries added and removed).
I need to show to current items in the Collection via a ComboBox (so
the user can pick the one he wants to watch). So I thought I could do:
comboBox.DataSource = myCollection;
Then any time I do an Add() to myCollection the new item would appear
in the ComboBox. I set up a test using a Timer() which adds items and
I never see the new items in the ComboBox.
What am I missing?
Thanks,
John
I have inhereted CollectionBase to store a data that is continuously
(every few seconds) updated (entries added and removed).
I need to show to current items in the Collection via a ComboBox (so
the user can pick the one he wants to watch). So I thought I could do:
comboBox.DataSource = myCollection;
Then any time I do an Add() to myCollection the new item would appear
in the ComboBox. I set up a test using a Timer() which adds items and
I never see the new items in the ComboBox.
What am I missing?
Thanks,
John