How to change the fontname and fontsize of a listview

  • Thread starter Thread starter Timo Meier
  • Start date Start date
In your form's code view, find the section where the listview is
constructed...

Add the following line (with changes as desired)

Me.ListView1.Font = New Font("Microsoft Sans Serif", 7, FontStyle.Regular)

should do it for ya'

--Rissa
 
Dear Timo,
The font property of listview is not available at design time in .Net
CF. You would have to set it in your code as follows:

Me.ListView1.Font = New Font(FontName, FontSize, FontStyle)

Arif
 
Back
Top