I have to process some controls by their names
this.Controls.Find(String.Format("lbl{0}", index),
true)[0].Text = data[i].ToString();
but when I tryed to get a Combobox by name it can't show the SelectedIndex property
this.Controls.Find(String.Format("cmbDat{0}", index), true)[0].
Who i can do?