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.
如何在 Excel 中创建 VBA 键盘快捷键?我不想使用 GUI。我想以编程方式进行。那可能吗?
OnKey 函数是否意味着它正在访问的 Sub 的一部分?
您应该单独编写一个Sub来设置您需要使用的密钥
Sub
Application.OnKey(Key, ProcedureName)
然后可以以多种方式运行此子程序,例如从Alt-F8菜单运行、从 VBA IDE 运行、分配给命令栏按钮、从Workbook_Open事件运行
Alt-F8
Workbook_Open