Listview find Column Header Text 
Author Message
 Listview find Column Header Text

Hi,
    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.

Eric Seneca



Sat, 27 Aug 2005 05:34:12 GMT  
 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



Sat, 27 Aug 2005 05:48:03 GMT  
 
 [ 2 post ] 

 Relevant Pages 

1. ListView control and column headers, change text possible?

2. ListView Question; How to get column header text

3. how to find given text in a particular column in listview

4. ListView multi-lined column headers

5. Listview Column Header Icon

6. How to change color of ListView column header?

7. How to sort on a listview column header?

8. sort a listview by column header click

9. Listview column header height

10. VBNET: Icons in Listview Column Headers

11. Is it possible to hide only one Column Header inm a ListView

12. Right Click on Listview Column Headers

 

 
Powered by phpBB® Forum Software