loading Dropdown with extra Item

  • Thread starter Thread starter Jacques van der zwan
  • Start date Start date
J

Jacques van der zwan

Hi, currently I load a combo with a field in a table,how can I add an
extra item(hardcoded) in the combo with the current items.

Thanxs
 
Hi

After binding Combo, programatically just add one
listitem.

Ravikanth[MVP]
 
Hi

I did it just after I loaded the combo.
drpSelectCompany.Items.Add("All");
I want the Item "ALL" added.

Thanx for your reply
 
Back
Top