I have a listview control I am trying to fill reading out of a database but its placing the data vertically instead of horizontally.

Here's the code:
dim Mynode as listview

sDateBilled = !BirthDate
soptionamount = !FirstName
sTotalPlanAmount = !LastName
ssubtotal = !HireDate
sCredit = !City
sDebit = !Region
sTotal = !PostalCode
sAmountPaid = !Country


frmBilling1.ListView1.ListItems.Add , , sDateBilled
Set Mynode = frmBilling1.ListView1.ListItems.Add.ListSubItems.Add(, , ssubtotal)
frmBilling1.ListView1.ListItems.Add.ListSubItems.Add , , soptionamount
frmBilling1.ListView1.ListItems.Add.ListSubItems.Add , , sTotalPlanAmount


[This message has been edited by bontyboy (edited 02-18-2000).]