Loop through combo boxes

  • Thread starter Thread starter Sampath Gamaarchchi
  • Start date Start date
S

Sampath Gamaarchchi

Guest
I have couple of combo boxes named (combx_name1,combx_name2,combx_name3) and I need to go through each combo box to get its value using a loop as shown below.

for(int I=0;I>3;i++)

{

string value = combx_name.text;

}

Continue reading...
 
Back
Top