Hallo,

>So langsam kommt mein vorttrag in die richtige richtung :-)
>nun habe ich eine frage wie man folgendes am besten umsetzt.
>
>Ich habe eine control ueber das eine Collection mit zahlen
>gefuellt wird, dafuer habe ich ein beispiel aus dem MSDN
>
>Public Class Int16Collection
>   Inherits CollectionBase
>
>
>   Default Public Property Item(index As Integer) As Int16
>      Get
>         Return CType(List(index), Int16)
>      End Get
>      Set
>         List(index) = value
>      End Set
>   End Property
>
>
>   Public Function Add(value As Int16) As Integer
>      Return List.Add(value)
>   End Function 'Add
>
>
definiere f�r das Item eine Property vom Typ Collection.
F�lle diese Collection und weise sie dann
dem Item zu. Das Item f�gst Du in die erste Collection
ein.

Gruss

Alex

_______________________________________________
Asp.net mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/asp.net

Antwort per Email an