T Timo Meier Mar 18, 2004 #1 Hello, how can I change the fontname and fontsize of a listview? Regards, Timo
R Rissa Mar 18, 2004 #2 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
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
M Muhammad Arif Mar 19, 2004 #3 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
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