Click here to Skip to main content
15,894,017 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
1) i fill the dataset.
Then i want to fill the listview in the following manner:
for i=0 to ds.columns.count-1
lv=new listviewitem
for j=0 to ds.row.count-1
lv.items.subitem(0)=ds.row("ID")
lv.items.subitem(0)=ds.row("Name")
lv.items.subitem(0)=ds.row("Fname")
next
lv.items.add()
next


but it gives the error there is row at position 0
Posted
Updated 18-Feb-13 9:10am
v3
Comments
dan!sh 18-Feb-13 0:50am    
Have you tried something? Post the relevant code and show what exactly is problem here.
Member 9841724 18-Feb-13 1:04am    
1) i fill the dataset.
Then i want to fill the listview in the following manner:

for i=0 to ds.columns.count-1
lv=new listviewitem
for j=0 to ds.row.count-1
lv.items.subitem(0)=ds.row("ID")
lv.items.subitem(0)=ds.row("Name")
lv.items.subitem(0)=ds.row("Fname")
next
lv.items.add()
next

but it gives the error there is row at position 0

1 solution

Hi,

Refer the below code
VB
'Fill the dataset ds
        Dim lv As ListViewItem
        Dim i, j As Int16
        For i = 0 To ds.Tables(0).Rows.Count - 1 'Dataset have multiple tables, here I am reffering the first table
            lv = New ListViewItem

            lv.SubItems.Add(ds.Tables(0).Rows(i)("ID"))
            lv.SubItems.Add(ds.Tables(0).Rows(i)("Name"))
            lv.SubItems.Add(ds.Tables(0).Rows(i)("Fname"))

            ListView1.Items.Add(lv) 'Listview control
        Next


Best Regards
Muthuraja
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900