'you'll need to add a listview control to the form where you put this code
'setup listview
'this part can also be done at designtime in the IDE
ListView1.Columns.Add("Item", 50, HorizontalAlignment.Center)
ListView1.Columns.Add("Description", 125, HorizontalAlignment.Left)
ListView1.Columns.Add("Price", 80, HorizontalAlignment.Right)
ListView1.Columns.Add("Quantity", 40, HorizontalAlignment.Center)
ListView1.Columns.Add("BO", 40, HorizontalAlignment.Center)
ListView1.Columns.Add("Amount", 80, HorizontalAlignment.Right)
ListView1.View = View.Details
'now add data
'start with first column
Dim lvi As New ListViewItem("9999")
'add other columns
lvi.SubItems.Add("CD Player")
lvi.SubItems.Add("$200.00")
lvi.SubItems.Add("1")
lvi.SubItems.Add("0")
lvi.SubItems.Add("$200.00")
'now add it to the listview
ListView1.Items.Add(lvi)
'second item (could be done in a loop)
lvi = New ListViewItem("88887")
lvi.SubItems.Add("Amplifier")
lvi.SubItems.Add("$200.00")
lvi.SubItems.Add("1")
lvi.SubItems.Add("0")
lvi.SubItems.Add("$200.00")
ListView1.Items.Add(lvi)
'change a something in existing data
'the qty and amount in the second line
ListView1.Items(1).SubItems(3).Text = "2"
ListView1.Items(1).SubItems(5).Text = "$400.00"