在 Excel 中保存 VBA 字典对象
作为 Excel 工作簿模板的一部分,创建并添加一个 Dictionary 对象(来自脚本运行时库)。是否可以以某种方式将其与工作簿一起保存,以便在启动工作簿时可用,或者我应该将数据导出到工作表并保存,然后在下次重新加载?
As part of an Excel Workbook Template a Dictionary object (from the Scripting Runtime Library) is created and added to. Is it possible to save this in some way along with the Workbook such that it is available on starting up the Workbook, or should I just export the data to a worksheet and save it, then reload it in the next time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为工作表是最好的选择。您可能想使用非常隐藏的选项,这意味着工作表只能通过代码可见。
例如:
I reckon a worksheet is the best bet. You might like to use the very hidden option, which means the sheet can only be made visible by code.
For example:
为什么不将其保存到文件中?
'~~~~~~~~~~~~~~~~
Why not save it to a file?
'~~~~~~~~~~~~~~~~