Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to transfer the all values of list box to the gridview..what are the steps or procedure for doing this....
Posted

1 solution

Hi,

1) Create a data table with a column.
2) Copy all the list box values to data table.
3) Bind that data table into the Grid View.

I have added code in button click event

VB
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
       Dim dt As New DataTable
       dt.Columns.Add("Values")

       Dim iPos As Integer
       For iPos = 0 To ListBox1.Items.Count - 1
           Dim dr As DataRow = dt.NewRow
           dr(0) = ListBox1.Items(iPos).ToString()
           dt.Rows.Add(dr)
       Next
       DataGridView1.DataSource = dt
   End Sub


Hope this helps.

Best Regards
Muthuraja
 
Share this answer
 
v2

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