MS Word 2003关于开放自定义属性值增量

发布于 2024-11-26 15:28:44 字数 142 浏览 4 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不忘初心 2024-12-03 15:28:44

我将使用 Document_Save 事件,并在其中增加值。这样做的一个很好的链接是这里(有点太复杂了,无法发布摘录)。

不过,如果你只想简单地做到这一点,我认为这会起作用:

ActiveDocument.CustomDocumentProperties("autoInc").Value =  
  ActiveDocument.CustomDocumentProperties("autoInc").Value +  1

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:

ActiveDocument.CustomDocumentProperties("autoInc").Value =  
  ActiveDocument.CustomDocumentProperties("autoInc").Value +  1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文