Click here to Skip to main content
15,790,135 members
Please Sign up or sign in to vote.
1.80/5 (2 votes)
See more:
How to bind the values in combo box ...?
Posted
Comments
thatraja 6-Nov-13 2:37am    
Do google search with your question, you'll get tons of solutions. Trust me.

It's a off topic
if you want to again know this see the following links

ComboBox.DataSource Property
Bind a dataset to a combo box in C#
 
Share this answer
 
1. In design view click on smart option (a small arrow just at right side) of combobox and then select 'Edit Items'

2. Run time use
C#
comboBox1.Items.Add("Value1");
            comboBox1.Items.Add("Value2");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900