How to add a combox dynamically ..


//Write this code on the button_click event ...



private void button1_Click(object sender, EventArgs e)

{

ComboBox a = new ComboBox ();

this.Controls.Add (a);

}