How to hide a column in a ListView control?
If you need associate data with a row without displaying it use the ListView's Tag property
The simplest way as follows, try this code segment :
hide:
LVW.Columns.Item(0).Width = 0
show again:
LVW.Columns.Item(0).AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent)
may this help someone.