Is it possible to add Columns to a ListView manually or does it have to be done at runtime?
Printable View
Is it possible to add Columns to a ListView manually or does it have to be done at runtime?
Yes, Go to its propertys and select the columnheaders tab and start inserting your columns.
Casey.
You can add columns at runtime...
vb Code:
Private Sub Form_Load() With ListView1 .View = lvwReport .ColumnHeaders.Add , , "Column1" .ColumnHeaders.Add , , "Column2" End With End Sub