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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top