Hi,
I created 3 combobox: comboBox1, comboBox2 and comboBox3.
I wish to select the require combobox according to different case. I tried to use comboBo(i) but it return me error.For example,
for (int i=0; i=3;i++)
{
textBox1->Text=comboBox(i)->SelectedItem->ToString();
}
The code return me error on selecting "comboBox(i)". I knew the syntax is wrong, but how can I select the respective comboBox i required?
Thanks.