
Listview find Column Header Text
Hello Eric John,
Quote:
> Can someone give me an example of looping though the column
headers of a
> listview and displaying the text assigned to that column with a
message box.
\\\
Dim c As ColumnHeader
For Each c In Me.ListView1.Columns
MessageBox.Show(c.Text)
Next c
///
Regards,
Herfried K. Wagner