访问 Office 应用程序状态栏中的进度栏
我为 Word 和 Excel 构建 VBA 应用程序,有什么方法可以访问有时出现在 Office 状态栏中的进度条。
I build VBA applications for both Word and Excel, is there any way to access the progress bar that sometimes appears in the Office status bar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
下面将模拟 Excel 状态栏中的进度条:
The following will simulate a progress bar in Excel's status bar:
另外,我建议记录 StatusBar 的当前状态,然后在一切完成后恢复它。
I would recommend in addition, to record the current state of the StatusBar, then restore it when everything is done.
我没有访问进度栏,但我过去曾使用过类似的方法将任务状态文本放置在状态栏中......
I have not accessed the progress bar, but I have in the past used something like this to place task status text in the status bar...
AFAIK,没有办法重现 Word & 所使用的蓝色点线。 Excel 显示接近 100% 的进度,例如打开文件时。
我记得曾经看到一些代码在状态栏中复制它,但它很复杂,当使用 Application.StatusBar 在状态栏中说“X%完成”就足够了时,我不会推荐它。
AFAIK, there is no way to reproduce the blue line of dots used by Word & Excel to show progress towards 100%, eg when opening a file.
I remember once seeing some code to replicate it in the status bar, but it was complex, and I wouldn't recommend it, when it is quite sufficient instead to say "X% complete" in the status bar, using Application.StatusBar.