How do you modify a listview's column width at run time?
Printable View
How do you modify a listview's column width at run time?
... or with a loop:VB Code:
ListView1.ColumnHeaders.Item(1).Width = 3000?VB Code:
Dim lvwColumnHeader As ColumnHeader For Each lvwColumnHeader In ListView1.ColumnHeaders lvwColumnHeader.Width = 3000 Next
Thanks :thumb:Quote:
Originally Posted by gavio
EDIT: can't give you reputation... looks like I have been giving you some recently.
That's not a problem for me... and btw, yes, you did :DQuote:
Originally Posted by krtxmrtz