|
文字連結に+を使っているのか、足し算なのか解らんけど。
(尚、文字連結に+を使っている人を見ると、何考えているんだと思う方です。)
Dim errst as string
If datebox.Text = "" Then
errst = "日付" + tmp & vblf
end if
If namebox.Text = "" Then
errst = "担当者名" + tmp & vblf
end if
If manbox.Text = "" Then
errst = "1万円札の枚数" + tmp & vblf
end if
If gosenbox.Text = "" Then
errst = "5" + sen & vblf
end if
If nisenbox.Text = "" Then
errst = "2" + sen & vblf
end if
If senbox.Text = "" Then
errst = "1" + sen & vblf
end if
If gohyakubox.Text = "" Then
errst = "500" + hoka & vblf
end if
If hyakubox.Text = "" Then
errst = "100" + hoka & vblf
end if
If gojubox.Text = "" Then
errst = "50" + hoka & vblf
end if
If jubox.Text = "" Then
errst = "10" + hoka & vblf
end if
If gobox.Text = "" Then
errst = "5" + hoka & vblf
end if
If itibox.Text = "" Then
errst = "1" + hoka & vblf
End If
if errst <> "" then
msgbox left(errst,len(errst)-1), , "入力漏れ"
exit sub
end if
|
|