返回值,我想從具有選定行如何從DataGridView
TextBox8.Text = Me.DataGridView1.CurrentRow.Cells("Vend Price").ToString
鬻價格代表所需的列名的DataGridView表返回一個值。
我得到的錯誤信息:
Object reference not set to an instance of an object.
現在我做了什麼錯?
p.s.是否有可能從數據網格的已刪除列中返回值,或者我將直接從表中返回?
更完整的代碼如下:
Private Sub MainMenu_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Me.ProductsTableAdapter.Fill(Me.MisuDBDataSet.Products)
End Sub
Private Sub Button15_Click(sender As System.Object, e As System.EventArgs) Handles Button15.Click
If Me.DataGridView1.CurrentRow.Cells("Vend Price").Value.ToString Is Nothing Then
'Do nothing
Else
Label13.Text = Me.DataGridView1.CurrentRow.Cells("Vend Price").Value.ToString
End If
End Sub
請提供您的HTML標記。 –
@Nudier在DataGridView是一個WinForms控制,而不是asp.net –