Combo Box & DatSource

  • Thread starter Thread starter Jacques
  • Start date Start date
J

Jacques

Hi ,


I've 24 Combo Box in a Group , connected to the same DataSource
(ArrayList) : easy way to fill Combo .

The pb i've , is that when i select an item in 1 combo then all other
23 will display the same entry , and of course i don't want that .

Is there something quite simple that i could do force them , not to
sync ?

Thanks
Jacques
 
i think if u link it via the datasource they are all bound to the same
currencymanager (well i think thats what u call it.. im sure the experts
will correct me on the correct term) , hence all being in sync. Sort of like
how u can control all textboxes to scroll records at the sametime.

You could use the datareader to loop and then append the data to each
different combobox within the same loop.. it shouldnt be linked to any
datasource then...
 
Hi,

In addition to Mike's comments. The currencymanger will keep the
comboboxes in sync. Create a new dataview for each combobox and bind each
combobox to a different dataview.

Ken
------------------
<Jacques> wrote in message Hi ,


I've 24 Combo Box in a Group , connected to the same DataSource
(ArrayList) : easy way to fill Combo .

The pb i've , is that when i select an item in 1 combo then all other
23 will display the same entry , and of course i don't want that .

Is there something quite simple that i could do force them , not to
sync ?

Thanks
Jacques
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top