質問編集履歴
5
改行削除
test
CHANGED
File without changes
|
test
CHANGED
@@ -15,8 +15,6 @@
|
|
15
15
|
|
16
16
|
|
17
17
|
```vb.net
|
18
|
-
|
19
|
-
|
20
18
|
|
21
19
|
While i < row
|
22
20
|
|
@@ -66,6 +64,4 @@
|
|
66
64
|
|
67
65
|
End While
|
68
66
|
|
69
|
-
|
70
|
-
|
71
67
|
```
|
4
改行を付けたし
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,4 +68,4 @@
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
-
``
|
71
|
+
```
|
3
改行を付けたし
test
CHANGED
File without changes
|
test
CHANGED
@@ -66,4 +66,6 @@
|
|
66
66
|
|
67
67
|
End While
|
68
68
|
|
69
|
+
|
70
|
+
|
69
71
|
``
|
2
改行を付けたし
test
CHANGED
File without changes
|
test
CHANGED
@@ -15,6 +15,8 @@
|
|
15
15
|
|
16
16
|
|
17
17
|
```vb.net
|
18
|
+
|
19
|
+
|
18
20
|
|
19
21
|
While i < row
|
20
22
|
|
1
プログラム追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -11,3 +11,57 @@
|
|
11
11
|
|
12
12
|
|
13
13
|
Value内が{}だった時の意味とif文で判定させる方法を教えて下さい。
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
```vb.net
|
18
|
+
|
19
|
+
While i < row
|
20
|
+
|
21
|
+
If dgv.Rows(i).Cells(0).Value Is Nothing Then
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
Exit While
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
ElseIf dgv.Rows(i).Cells(0).Value Is DBNull.Value And dgv.Rows(i).Cells(3).Value Is DBNull.Value Then
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
MessageBox.Show("日付と金額が入力されていない為、保存できませんでした。", "日付と金額が入力されておりません。", MessageBoxButtons.OK, MessageBoxIcon.Error)
|
34
|
+
|
35
|
+
Exit Sub
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
ElseIf dgv.Rows(i).Cells(0).Value Is DBNull.Value Then
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
MessageBox.Show("日付が入力されていない為、保存できませんでした。", "日付が入力されておりません。", MessageBoxButtons.OK, MessageBoxIcon.Error)
|
44
|
+
|
45
|
+
Exit Sub
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
ElseIf dgv.Rows(i).Cells(3).Value Is DBNull.Value Then
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
MessageBox.Show("金額が入力されていない為、保存できませんでした。", "金額が入力されておりません。", MessageBoxButtons.OK, MessageBoxIcon.Error)
|
54
|
+
|
55
|
+
Exit Sub
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
End If
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
i += 1
|
64
|
+
|
65
|
+
End While
|
66
|
+
|
67
|
+
``
|