tyoshikawa1106のブログ

- Force.com Developer Blog -

VBA:メッセージボックス表示

メッセージボックスは次の方法で表示できます。

Sub test()
    MsgBox ("Hello World")
End Sub