actually i want to get details from the combobox. such as experience it must increase 1 by one so i write for loop.
int expe;
for(expe=0;expe<=30,expe=++)
actually this is want to increase when the form loading.
so where i want to write this coding to my form.
please help me.

Satyapriya NayakPosted Apr 26, 2013, 12:32 PM
{
comboBox1.Text = "Select experience";
int expe;
for(expe=0;expe<=30;expe++)
{
comboBox1.Items.Add(expe);
}
}