Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
実行時エラー '91': オブジェクト変数またはブロックが設定されていません
私のコードは
Private Sub Workbook_Open() Dim MenuBar As CommandBarButton Set MenuBar = CommandBars(Standard).Controls(3) MsgBox MenuBar.Caption End Sub
このエラーを解決するのを手伝ってください。
Standardの代わりに入れました"Standard"。したがって、私は常に を使用することをお勧めしますOption Explicit。
Standard
"Standard"
Option Explicit
を使用しない場合、"thenStandardは変数として扱われます。
"