使用SendKeys在Excel工作簿中启用内容

时间:2016-09-29 17:34:03

标签: excel excel-vba vba

我正在尝试在Excel工作簿中使用SendKeysEnable Content。我的程序存在于工作簿中。我正在打开工作簿b,希望在工作簿b中找到Enable Content

我遇到麻烦的部分是SendKeys齐声合作。我需要SendKeys做的是 -

 Alt + F, I, N, {Enter}

以下是我尝试过的几段代码 -

尝试1

Application.Wait (Now + TimeValue("0:00:02"))
SendKeys "%f", True
SendKeys "i", True
SendKeys "n", True
SendKeys "~", True

结果1

这会导致在工作簿b中输入i和n

尝试2

Application.Wait (Now + TimeValue("0:00:02"))
SendKeys "%fin~", True 

结果2

与结果1相同

尝试3

Application.Wait (Now + TimeValue("0:00:02"))
SendKeys "%f", True
SendKeys "i", True
SendKeys "n~", True

结果3

与结果1相同

对我可能做错了什么的想法?

谢谢。

0 个答案:

没有答案