Last active
December 6, 2024 22:08
-
-
Save s-hiiragi/a232d9be2f8f26fcdeaaf7401d193bf5 to your computer and use it in GitHub Desktop.
Revisions
-
s-hiiragi revised this gist
Dec 6, 2024 . No changes.There are no files selected for viewing
-
s-hiiragi created this gist
Dec 6, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ ' オートコンプリートを切り替える ' ' 以下のオプションをON/OFFします ' オプション>詳細設定>編集オプション>オートコンプリートを有効にする ' Sub オートコンプリート切替() Application.EnableAutoComplete = Not Application.EnableAutoComplete MsgBox "オートコンプリートを" & IIf(Application.EnableAutoComplete, "有効", "無効") & "にしました" End Sub