質問編集履歴

1

情報追加

2017/08/04 07:35

投稿

reeeo
reeeo

スコア42

test CHANGED
File without changes
test CHANGED
@@ -15,3 +15,39 @@
15
15
  で全行消去すると「オブジェクト参照がオブジェクト インスタンスに設定されていません。」とエラーが出てしまいます。
16
16
 
17
17
  データがなくなったからこのエラーがでてしまうのは理解できたのですが、どうしたらこのエラーがでなくなるのかわかりません。お願いします。
18
+
19
+
20
+
21
+ もう一度デバックして確認したら下記の"商品名"の箇所でエラーが出ていました。
22
+
23
+ ```
24
+
25
+ '行変更
26
+
27
+ Private Sub DataGridView1_SelectionChanged(sender As Object, e As EventArgs) Handles DataGridView1.SelectionChanged
28
+
29
+
30
+
31
+ Try
32
+
33
+ '選択行の内容を表示する
34
+
35
+ ComboBox1.Text = DataGridView1.CurrentRow.Cells("商品名").Value
36
+
37
+ price_text.Text = DataGridView1.CurrentRow.Cells("価格").Value
38
+
39
+ num_text.Text = DataGridView1.CurrentRow.Cells("個数").Value
40
+
41
+
42
+
43
+ Catch ex As Exception
44
+
45
+ MsgBox(ex.Message)
46
+
47
+ End Try
48
+
49
+
50
+
51
+ End Sub
52
+
53
+ ```