> wie mache ich das dann richtig, oder geht das so gar nicht?
Z.B. so (ungetestet):
public class CheckBoxControlID
{
public CheckBox OnlineSystemCheckbox =
new CheckBox();
public int intOnlineSystemID;
CheckBoxControlID(bool checked, int id)
{
OnlineSystemCheckbox.Checked = checked;
intOnlineSystemID = id;
}
}
CheckBoxControlID[] myCheckBox = new CheckBoxControlID[2];
myCheckBox[0] = new CheckBoxControlID(false,1)
myCheckBox[1] = new CheckBoxControlID(true,5)
Claudius
_______________________________________________
CSharp.net Mailingliste, Postings senden an:
[EMAIL PROTECTED]
An-/Abmeldung und Suchfunktion unter:
http://www.glengamoi.com/mailman/listinfo/csharp.net