ステータスバーに文字列を設定

 

Sub test()

   ’ ステータスバーに文字列を設定
    Application.StatusBar = "VBAによるメッセージ表示"

 

End Sub

 

 

 

ステータスバーを既定の設定に戻す

 

Sub test2()

 

   ’ ステータスバーを既定の設定に戻す
    Application.StatusBar = False

 

End Sub

 

 

― ― ― ― ― ― ― ― ― ― → Excel VBA基礎入門もくじ へ戻る