Question Binding With LIst Boxes

Progress2007

Active member
Joined
Sep 5, 2008
Messages
25
Programming Experience
1-3
Hi I have a list box which is containning diffrent groups from database.
On the form i have multiple controls like checkboxes, text boxes and so on.

Wht i have to do when some one selects a entry from list box the others controsl should be populated from that value.

User can edit the data , delete the data and so on.

How can i achieve this.
PLease tell me...
 
You could use a BindingSource for the controls on the form and on the ListBox SelectedIndexChanged event move the Position of the BindingSource to the new item in the list.
 
Back
Top