' 乱数を格納するための変数を宣言する Dim iRandom As Integer ' 0 以上 100 未満の乱数を取得する iRandom = CInt(Math.Rnd() * 100) ' 取得した乱数を表示する Call MsgBox(CStr(iRandom))