[RESOLVED] Listview column header
I have listview with A, B, C column header..This column were added using code.
How to show only the column header A and C in the listview?
Code:
Dim Col As ColumnHeader
For i = 0 To (pFields.FieldCount - 1)
Set pField = pFields.Field(i)
Set Col = ListView1.ColumnHeaders.Add()
Col.Text = pField.Name
Next i
Re: Listview column header
If you want 3 columns, but only to show the first and last you could set the second column to have a width of zero (0)
Re: Listview column header
Re: [RESOLVED] Listview column header