Click here to Skip to main content
Sign Up to vote bad
good
See more: VB.NET
I want to transfer the all values of list box to the gridview..what are the steps or procedure for doing this....
Posted 7 Feb '13 - 18:25
gkelkar395


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
 
 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
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 498
1 Mahesh Bailwal 332
2 Arun Vasu 269
3 Maciej Los 263
4 Aarti Meswania 205
0 Sergey Alexandrovich Kryukov 9,660
1 OriginalGriff 7,329
2 CPallini 3,968
3 Rohan Leuva 3,339
4 Maciej Los 2,851


Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 8 Feb 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid