ExcelでVBAを使用してコマンドラインの可用性を変更するには?


このチュートリアルでは、ExcelでVBA * *を使用してコマンドラインの有効性を変更する方法をご案内します.下にしましょう!次のリンクからMS Excelの公式バージョンを入手してくださいhttps://www.microsoft.com/en-in/microsoft-365/excel

  • まず、Excelのワークシートでは、[開発]タブに移動する必要があります.
  • 次に、コードセクションの下のVisual Basicオプションを選択する必要があります.
  • 選択します
  • さて、以下のコードをコピーしてペーストしなければなりません.
  • Sub ToggleCommandBars()
    Dim cbEnabled As Boolean
        ' get the current commandbar state
        cbEnabled = Not Application.CommandBars(1).Enabled
        ' apply the new state to the Workbook Menu Bar
        Application.CommandBars(1).Enabled = cbEnabled
        ' apply the new state to the Standard toolbar
        Application.CommandBars("StandardOPE").Enabled = cbEnabled
        ' apply the new state to a custom commandbar (the oposite of the previous two)
        Application.CommandBars("MyCustomCommandBar").Enabled = Not cbEnabled
    End Sub
    
    
  • 選択してコードを保存し、ウィンドウを閉じる必要があります.
  • コードを保存する
  • 再度、Excelのスプレッドシートに移動し、[開発]タブをクリックします.
  • 次に、コードセクションでマクロオプションを選択する必要があります.
  • マクロオプションの選択
  • ここで、マクロ名が選択されていることを確認し、* Run *ボタンをクリックします.
  • コードを実行する
  • 最後に、マクロを実行した後、Excelのコマンドラインに対する出力**の可用性が得られます.

  • 評決
    このチュートリアルでは、ExcelでVBA * *を使用してコマンドデータベースの可用性を変更する方法についてのガイドラインを示します.任意の*クエリの場合にコメントを残して、同様にあなたの貴重な提案を言及することを忘れないでください.私たちのサイトを訪問していただきありがとうございます!学習を続けるGeek Excel !! *続きを読むExcel Formulas *!!
    更なる参照
  • How to Change the Date Format in Excel Office 365? ~ Complete Guide!!
  • Change the Time Format in Excel Office 365 ~ Useful Guide!!
  • Excel Formulas to Get the Percent Change ~ Quick Method!!
  • Excel Formulas To Count Unique Values In a Column!!
  • Highlight Unique Values in Selection using Macros in Excel 365!!