Set font, color for ListviewItem? [resolved]
PHP Code:
Dim lViewItem As New ListViewItem()
lViewItem.SubItems.Add(chr(252), System.Drawing.Color.Red, System.Drawing.Color.Green, New System.Drawing.Font("Wingdings", 10))
Me.myListView.Items.Add(lViewItem)
Why doesn't this work?
I get the chr(252) character of the default font (MS Sans) and the background and foreground are the default (white/black) colors?
The background/foreground isn't important and I will change them back to white/black, but even that isn't working.
thanks,