G Guest Mar 12, 2004 #1 Hi Anybody knows how to change the text in column header of listview Thanks in advance.
K Klaus Löffelmann Mar 12, 2004 #2 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
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