Hallo,
ich habe folgendes Problem.
Ich erstelle dynamisch Checkboxen so wie unten beschrieben.
Jetzt will ich die Checkboxen überprüfen, ob Sie aktiv sind oder nicht.
CheckBox[] check = new CheckBox[10];
for (int i = 0; i < 10; i++)
{
check = new CheckBox();
check.ThreeState = false;
check.Location = new Point(903, m += 30);
this.tabcontrol.Controls.Add(check);
}
Wisst ihr wie ich das machen kann?
mfg Pr0gr4mm3r
Pr0gr4mm3r (87) 1x Beste Antwort 2x "Danke"
|