OK... that's just mean. I won't do your homework for you, for obvious reasons, but I'll try and be a little more helpful than the complexitiness that is MSDN.
To add a row to a ListView, you use the Items.Add submethod:
Dim LVI As ListViewItem
LVI = ListView1.Items.Add ("Blah") The ID of the row, as such, is stored in the variable LVI.
To add subitems (same row, new column), it's very similar:
That should be enough to get you going. Remember, you can use the ToString method to convert almost anything to a string for use in the above methods.