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