gpt4 book ai didi

macros - 打开Powerpoint演示文稿时如何自动执行宏?

转载 作者:行者123 更新时间:2023-12-04 15:25:19 25 4
gpt4 key购买 nike

我有一个非常基本的问题,但在互联网上找不到答案。在 Powerpoint 2010 中,我有一个宏,每次打开 Powerpoint 文档时都希望执行该宏。如何实现这一目标?谢谢!

最佳答案

虽然 Auto_Open 不在 PowerPoint 演示文稿中运行,但您可以伪造它。向演示文稿添加 CustomUI 部件,然后在演示文稿打开时使用 CustomUI OnLoad 回调运行代码。 CustomUI 部分只需要 CustomUI 标签。

从这里获取自定义 UI 编辑器:http://openxmldeveloper.org/articles/customuieditor.aspx

在自定义 UI 编辑器中打开演示文稿。从“插入”菜单插入 CustomUI 部件:

Add a Custom UI part

现在输入一些简单的 RibbonX 代码,如下所示:

<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" 
onLoad="MyOnloadProcedure" >
</customUI>

现在编写您的打开程序:
Sub MyOnloadProcedure()
MsgBox "Hello"
End Sub

如果加载项中同时具有此过程和 Auto_Open 过程,则首先运行 Auto_Open。

充分披露:虽然我想到了使用这种方法并在Excel中使用过它,但我一直等到我在PPT Alchemy网站上第一次遇到它: Run Code When PowerPoint Opens .

关于macros - 打开Powerpoint演示文稿时如何自动执行宏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11306007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com