I have the code below which puts two column headers at the top of my ListView control, (Title) and (Description). . .

Code:
Private Sub Form_Load()
    
    Me.ListView1.View = lvwReport
    
    Me.ListView1.ColumnHeaders.Clear
    Me.ListView1.ColumnHeaders.Add , , "Title", ListView1.Width / 2
    Me.ListView1.ColumnHeaders.Add , , "Description", ListView1.Width / 2
End Sub
Can anyone show me the code I can add to this that will add one item in the list view control with the text (Item Title) under the ‘Title’ column and (Item Description) under the ‘Description’ column?


.