こんにちは私はこのコードでは、 "オブジェクトのインスタンスに設定されていないオブジェクトの参照"と言う問題があります。datagridviewデータをテキストボックス
私は検索のためのテキストボックス、データグリッドビュー、アイテム情報のための7つのテキストボックスを持っています。私は、検索texboxesに単語を入力し、DataGridViewの一致項目を示していますが、私はDataGridViewのをクリックしたときにエラーを示した場合 ..
Private Sub Supplies_RegularDataGridView1_CellClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles Supplies_RegularDataGridView1.CellClick
Supplies_RegularDataGridView1.Rows(e.RowIndex).Selected = True
Dim i = Supplies_RegularDataGridView1.CurrentRow.Index
TextBox1.Text = Supplies_RegularDataGridView1.Item(1, i).Value.ToString()
TextBox2.Text = Supplies_RegularDataGridView1.Item(2, i).Value.ToString()
TextBox3.Text = Supplies_RegularDataGridView1.Item(3, i).Value.ToString()
TextBox4.Text = Supplies_RegularDataGridView1.Item(4, i).Value.ToString()
TextBox5.Text = Supplies_RegularDataGridView1.Item(5, i).Value.ToString()
TextBox14.Text = Supplies_RegularDataGridView1.Item(6, i).Value.ToString()
TextBox6.Text = Supplies_RegularDataGridView1.Item(7, i).Value.ToString() =the error here
End Sub
私は私のDataGridViewにデータをsee..theあなたは歓迎されている – steph22
null..thanksです! –