Making item row in ListView Bold...

You have to create a new instance of the font class so try:
Visual Basic:
ListView1.Items(8).Font = New Font(ListView1.Items(8).Font, FontStyle.Bold)
 
Back
Top