Programaticaaly change text in column header of listview

  • Thread starter Thread starter Guest
  • Start date Start date
Li,

try:

For Each locCol As ColumnHeader In YourListView.Columns
locCol.Text = "New Text"
Next

That should do is. By the way: If you want to automatically align the column
width, ad:

locCol.Width = -2

in the loop.

Hope this helps,

Klaus
 
Back
Top