Why doesn't this work?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)
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,




Reply With Quote