
VBA
渣渣黄0
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[VBA]打开Excel弹出错误"Could not load some objects because they are not available on this machine."
原因分析:1.(亲测)多半是VBA少了某个控件。所以要先检查一下缺少什么控件。linkI noticed some similar cases related to the .OCX file missing. You may try the following steps:1.Open the spreadsheet2. Open the developer console with A...原创 2019-06-20 10:55:38 · 989 阅读 · 0 评论 -
【VBA】用VBA打开excel,禁止被打开文件运行宏或自身VBA
Sub MyMacro()Application.AutomationSecurity = 3 '禁用宏Workbooks.Open ThisWorkbook.Path & “\1.xlsm”Application.AutomationSecurity = 2 '恢复选择End Sub原创 2019-06-21 14:24:55 · 3965 阅读 · 0 评论