hi group..
i want to store all my combobox's indexes into an array....what coding should i do??plz help...
i want to store all my combobox's indexes into an array....what coding should i do??plz help...
string[] strArray = new string[comboBox1.Items.Count]; for (int i = 0; i < comboBox1.Items.Count; i++) { strArray[i] = comboBox1.Items[i].ToString(); }
Comment