ray88’s diary

お仕事で困ったとき用の自分用の覚書

VBS IF文

dim i 
i = inputBox("番号を入力してください")
If i = 1 then
    MsgBox "おはよう"
ElseIf i = 2 then
    MsgBox "こんにちは"
Else
    MsgBox "こんばんは"
end if

上記コードを実行した際の出力結果
f:id:ray88:20210821111659p:plain