MS Word 2003关于开放自定义属性值增量
我有一个 Word 文档,在其中创建了一个自定义属性(文件 > 属性 > 自定义)
名称:autoInc
类型:数字
值:999
我想知道如何将值自动增加 1 并每次都覆盖当前值该文件正在保存。
I have a Word document where I've created a custom property (File > Properties > Custom)
Name: autoInc
Type: Number
Value: 999
I want to know how to auto increment the value by 1 and override the current value every time this file is being saved.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将使用
Document_Save
事件,并在其中增加值。这样做的一个很好的链接是这里(有点太复杂了,无法发布摘录)。不过,如果你只想简单地做到这一点,我认为这会起作用:
I would use the
Document_Save
Event, and in it increment the value. A great link to doing that is here (and a little too complicated to post an excerpt).Though if you wanted to just do it simply, I think this will work: