Oct 24, 2004 #1 L Lanc1988 Contributor Joined Nov 27, 2003 Messages 508 How come this isn't working for me? Visual Basic: ListView1.Items(8).Font = Font.Bold
Oct 24, 2004 #2 D DiverDan Contributor Joined Jan 16, 2003 Messages 645 Location Sacramento, CA 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)
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)