如何区分 myShortCutSettings 和 DefaultSettings?

How can I distinguish between myShortCutSettings and DefaultSettings?

提问人:LearnAHK 提问时间:5/13/2023 最后编辑:LearnAHK 更新时间:5/13/2023 访问量:31

问:

我正在 Excel VBA 中编写 ShortCutKey;

Application.OnKey "^s", ""            '  makes Default setting
Application.OnKey "^s", "myPro"       '  makes myPro setting

有时我将其设置为我自己的一个,而前几天我将其设置为Excel默认值。 所以。。 我想知道使用VBA代码的设置是我的还是默认的。

这应该不是通过阅读其模块的内容之一,而是以其他方式 - 我的意思是一种真正的方式 - 不是一种解决方法,而是“Application.ListCommands ListAllCommands:=True”,如果是 MS Word。

或者,如果可能的话,使用 VSTO 怎么样?我通过 C# 对它有点熟悉。

C# Excel VBA VSTO 快捷方式

评论


答: 暂无答案