如何在Excel启动时创建启动画面?
我是 Excel 编程新手,我想在打开 Excel 文件时创建一个弹出屏幕,所以有人可以告诉我如何在 Excel 启动时创建启动屏幕吗?
I am new to excel programming and I want to create a popup screen when my excel file is opened so can anyone tell me how to create a splash screen when excel start?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
构建一个完全由所需的启动图像组成的自定义表单。然后在加载电子表格/应用程序后在设定的时间内调用该表单。
现在更新代码(或至少是链接):
就像我上面所说的,这个问题在跨宇宙的论坛上得到了广泛的处理。
DailyDose 似乎有最简单、最直接的实现启动画面,提出了有关将表单作为模式运行的一些重要要点,以允许您的应用程序代码在启动画面后继续运行。
代码非常简单:
VBA Express 有一个宏,可以在表单,然后在它完全不可见时将其关闭。
Build a custom form that consists entirely of the desired splash image. Then call that form for a set period of time upon the load of your spreadsheet/app.
UPDATE Now with code (or at least links):
Like I said above, this question is dealt with extensively on forums across the inter-verse.
DailyDose seems to have the simplest and most straightforward implementation of the splash screen, making a few important points about running the form as modal to allow your app code to keep running behind the splash.
The code is very simple:
VBA Express has a macro that'll run a slow fade on the form and then close it when it gets completely invisible.