Hey super. Das funktioniert. 
Vielen Dank f�r die Hilfe.

Gru�

Kristian



-----Urspr�ngliche Nachricht-----
Von: Claudius Ceteras [mailto:[EMAIL PROTECTED] 
Gesendet: Donnerstag, 15. April 2004 11:09
An: [EMAIL PROTECTED]
Betreff: RE: [CSharp.net] Array mit eigenem Datentyp



> 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
_______________________________________________
CSharp.net Mailingliste, Postings senden an:
[EMAIL PROTECTED]
An-/Abmeldung und Suchfunktion unter:
http://www.glengamoi.com/mailman/listinfo/csharp.net

Antwort per Email an