嘿傢伙我想使用另一種形式的datagridview做一個自動填充,但問題是我不能使價值回到以前的形式它只是不斷創建一個新的形式。它的工作原理能源部的數據被轉移,但在另一個新的形式,請幫助使用vb.net中另一種形式的datagridview自動填充
Dim form As New FormLibrarianMain
If e.RowIndex >= 0 Then
Dim row As DataGridViewRow
row = Me.DataGridView1.Rows(e.RowIndex)
form.Labelid.Text = DataGridView1.CurrentRow.Cells(0).Value.ToString()
form.Labelfirstname.Text = DataGridView1.CurrentRow.Cells(1).Value.ToString()
form.Labelmiddlename.Text = DataGridView1.CurrentRow.Cells(2).Value.ToString()
form.Labellastname.Text = DataGridView1.CurrentRow.Cells(3).Value.ToString()
form.Labelgender.Text = DataGridView1.CurrentRow.Cells(4).Value.ToString()
form.Labeladdress.Text = DataGridView1.CurrentRow.Cells(5).Value.ToString()
form.Labelcity.Text = DataGridView1.CurrentRow.Cells(6).Value.ToString()
form.Labelpostcode.Text = DataGridView1.CurrentRow.Cells(7).Value.ToString()
form.Labelemail.Text = DataGridView1.CurrentRow.Cells(8).Value.ToString()
form.Labeldob.Text = DataGridView1.CurrentRow.Cells(9).Value.ToString()
form.Labeltype.Text = DataGridView1.CurrentRow.Cells(10).Value.ToString()
form.ShowDialog()
Me.Hide()
End If
End Sub
你的問題是不是很清楚。你的表單是否繼續創建表單?或者您在填寫datagridview時遇到問題? – kiLLua
「不斷創造形式!」 – UNKNOWN
請發表你的完整'Sub',然後,如何調用它。 – kiLLua