快速问题或者我希望它很快。
我有一个包含4列的DataGridView1,我想将DataGridView1上的所有内容添加到列表框中。
列示例
Name Average Handicap Paid
John 170 0 20
Alex 180 0 15
Jane 200 0 10
Jim 150 0 20
当我点击Button1时,我希望它向下移动并将它们添加到ListBox1
ListBox1示例
John Paid $20
Alex Paid $15
Jane Paid $10
Jim Paid $20
如果你点击它,我会设置DataGridView1,它会填充一些标签,并希望有一种方法可以自动选择每一行一次,只需拉动Labels.text信息,因为它会自动向下滚动列表但是不知道如何一次自动选择列表。
谢谢
答案 0 :(得分:0)
在Button1
点击事件中......
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
For i As Integer = 0 To DataGridView1.Rows.Count - 1
Dim LboxValue As String = DataGridView1.Rows(i).Cells(0).Value & " " & DataGridView1.Columns(3).HeaderText & " " & DataGridView1.Rows(i).Cells(3).Value
ListBox1.Items.Add(LboxValue)
Next
End Sub
根据您的需要......
希望它有所帮助。