Click here to Skip to main content
15,891,513 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All


Multiselect Listview Data Show To DATAGRIDVIEW... PLEAE HELP ME..

I have data in ListView Data

Regno Name

A100 AAA
A200 BBB
A300 CCC

I Selected A100 and A300 that only i want to Show to DAtaGirdView

I Expect OutPut Like This

REgno Name
A100 AAA
A300 BBB

Here I USE CODE

VB
For i As Integer = 0 To ListView1.SelectedItems.Count - 1
Dim strSQL1 As String = "SELECT * FROM Exam_Absent where  Stud_Name='" & ListView1.SelectedItems.Item(i).SubItems(1).Text & "'"
Dim DaAp1 As New SqlDataAdapter(strSQL1, con)
Dim Dset1 As New DataTable
        DaAp1.Fill(Dset1)
          DGV1.DataSource = Dset1
        Dset1.AcceptChanges()
    Next i
Posted

1 solution

VB
For Each dr As DataRow In Dset1.Rows
      Me.DGV1.Rows.Add()
               With Me.DGV1.Rows(Me.DGV1.Rows.Count - 1)
                   .Cells("Regno").Value = dr("Regno")
                   .Cells("Stud_Name").Value = (dr("Stud_Name"))
               End With
           Next
 
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