[vb]If Texbox1.text = "Game1" Then
Dim l As New ImageList
GameView.SmallImageList = l
GameView.Items(0).ImageIndex = 1
GameView.View = View.Details
Else
Dim l As New ImageList
GameView.SmallImageList = l
GameView.Items(0).ImageIndex = 0
GameView.View = View.Details
End If[/vb]
nur es zeigt mir kein bild an obwohl ich eins hinzugefügt habe das 16x16 groß sein soll
[vb]
Dim l As New ImageList
GameView.SmallImageList = l
l.Images.Add(Bitmap.FromResource(icon1.text))
GameView.Items(0).ImageIndex = 0
GameView.View = View.Details[/vb]
klappt nicht mit resource :/
wie lade ich nun ein icon von der resource






