DropDownList Help

  • Thread starter Thread starter Kervin Duncan
  • Start date Start date
K

Kervin Duncan

I have a populate a dropdownlist with Employee names from the northwind
database, now i would like for when i select a name in the dropdownlist,
their employeeid, title, etc is displayed in a textbox or a gridview.
 
I have a populate a dropdownlist with Employee names from the northwind
database, now i would like for when i select a name in the dropdownlist,
their employeeid, title, etc is displayed in a textbox or a gridview.

The Combo is based on a BindingSource, use this same bindingsource in
the other controls and they will change automatically as the current
record of the bindingsource changes.
 
Back
Top