これはおそらく簡単な質問ですが、サブの開始時に複数の入力ボックスを使用してデータを収集する必要がある場合、これらのうちどれが正しい方法ですか?
例 1:
InputText1 = InputBox("Enter your name")
If InputText1 = "" Then Exit Sub
InputText2 = InputBox("Enter your age")
If InputText2 = "" Then Exit Sub
'Do something
例 2:
InputText1 = InputBox("Enter your name")
If Not InputText1 = "" Then
InputText2 = InputBox("Enter your age")
If Not InputText2 = "" Then
'Do something
End If
End If