Word 2013文書のallフィールドを更新する方法が必要です。 (それが他のバージョンで動作するならば、いっそう良い。私はもともとWord 2007でこの問題を抱えていて、それ以来何も変わっていないようだ。)これは相互参照、ページ番号、目次、インデックス、ヘッダなどを含む。を押して更新できる場合 F9更新してほしい。
(理論的には、フィールドを更新すると他のフィールドを更新する必要が生じる可能性があります。例えば、長い目次では本文のページ番号が変わることがあります。一般的なケースに注意を払うことで十分です。マクロが安定するまでに2、3回、すべてを見つける単一のマクロが欲しいのです。)
私のこれまでの試みでは、フィギュア内のテキストボックス内のフィールドは更新されません。それらを更新するにはどうすればよいですか。
EDIT:与えられた答えと私がすでに持っていたものを組み合わせると、すべてを更新するように見えるマクロが与えられます( 既知の欠陥 =)。
'' Update all the fields, indexes, etc. in the specified document.
Sub UpdateAllFieldsIn(doc As Document)
'' Update tables. We do this first so that they contain all necessary
'' entries and so extend to their final number of pages.
Dim toc As TableOfContents
For Each toc In doc.TablesOfContents
toc.Update
Next toc
Dim tof As TableOfFigures
For Each tof In doc.TablesOfFigures
tof.Update
Next tof
'' Update fields everywhere. This includes updates of page numbers in
'' tables (but would not add or remove entries). This also takes care of
'' all index updates.
Dim sr As range
For Each sr In doc.StoryRanges
sr.Fields.Update
While Not (sr.NextStoryRange Is Nothing)
Set sr = sr.NextStoryRange
'' FIXME: for footnotes, endnotes and comments, I get a pop-up
'' "Word cannot undo this action. Do you want to continue?"
sr.Fields.Update
Wend
Next sr
End Sub
'' Update all the fields, indexes, etc. in the active document.
'' This is a parameterless subroutine so that it can be used interactively.
Sub UpdateAllFields()
UpdateAllFieldsIn ActiveDocument
End Sub
私はします Ctrl+A - すべてを選択する - そしてそして F9 たくさん更新します。
ただし、これはヘッダーとフッターを見逃しますが、IIRCを印刷/印刷プレビューするときに更新されます。
私は以下のマクロを見つけました。簡単なテストで、目次、段落内のフィールド、ヘッダーとフッター内のフィールド、および浮動テキストボックス図内のフィールドを更新しました。
うまくいけば、それはあなたが必要とするすべてをカバーします、そうでなければまだ更新に失敗しているものを示してください。
Sub UpdateAll()
Dim oStory As Range
For Each oStory In ActiveDocument.StoryRanges
oStory.Fields.Update
If oStory.StoryType <> wdMainTextStory Then
While Not (oStory.NextStoryRange Is Nothing)
Set oStory = oStory.NextStoryRange
oStory.Fields.Update
Wend
End If
Next oStory
Set oStory = Nothing
End Sub
この ページ は面白そうです:
Word 2007を使用している場合、手順は少し異なります。[Office]ボタンをクリックし、[Wordのオプション]をクリックします。 Wordの[Wordのオプション]ダイアログボックスが表示されます。ダイアログボックスの左側にある[詳細設定]をクリックします。 (関連図を参照するには、ここをクリックしてください。)[全般]領域(少し下にスクロールして表示)で、[開くときに自動リンクを更新]チェックボックスがオンになっていることを確認します。 OKをクリックしてください。その設定はあなたのすべてのリンクが常に最新のものであることを確認するべきです。文書を開いたときにフィールドを更新したい場合は、タスクを実行するためにマクロを使用する必要があります。具体的には、文書を開くときと閉じるときのどちらでフィールドを更新するかに応じて、AutoOpenマクロまたはAutoCloseマクロを使用する必要があります。以下は、使用できるAutoOpenマクロの例です。
Sub AutoOpen()
With Options
.UpdateFieldsAtPrint = True
.UpdateLinksAtPrint = True
End With
ActiveDocument.Fields.Update
End Sub
このマクロは、印刷時にフィールドとリンクを強制的に更新するようにオプションが設定されていることを確認してから、文書内のFieldsコレクションのすべてのメンバーを更新します。代わりに、終了時にフィールドを更新したい場合は、このマクロを使用できます。
Sub AutoClose()
ActiveDocument.Fields.Update
End Sub
このマクロは、document.exitを終了するときにupdate-on-printオプションを設定する必要がないため、はるかに短くなります。
すべてのヘッダとフッタを正しく更新したいのなら、これは私にとってはうまくいった:
Dim oStory As Range
Dim oSection As Object
Dim oHeader As Object
Dim oFooter As Object
For Each oStory In ActiveDocument.StoryRanges
oStory.Fields.Update
Next oStory
For Each oSection In ActiveDocument.Sections
For Each oHeader In oSection.Headers
oHeader.Range.Fields.Update
Next oHeader
For Each oFooter In oSection.Footers
oFooter.Range.Fields.Update
Next oFooter
Next oSection
Word 2010:
リボンを右クリックしてリボンをカスタマイズし、「すべてのコマンド」から「update」を検索して必要な場所に追加します。
このボタンは選択されたフィールドだけを更新します。
次に、すべてのフィールドを更新するには、を押します。 Ctrl + A それからこのボタン。
C#の場合:
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.Office.Interop.Word;
class Program
{
static void Main(string[] args)
{
List<string> path = new List<string>(args);
string filePathstr = string.Join(" ", path.ToArray());
//System.Windows.Forms.MessageBox.Show("filepathstr: " + filePathstr);
string folderPathstr = Path.GetDirectoryName(filePathstr);
//System.Windows.Forms.MessageBox.Show("folderPathstr: " + folderPathstr);
try
{
Application ap = new Application();
Document document = ap.Documents.Open(filePathstr);
document.Fields.Update();
foreach (Section section in document.Sections)
{
document.Fields.Update(); // update each section
HeadersFooters headers = section.Headers; //Get all headers
foreach (HeaderFooter header in headers)
{
Fields fields = header.Range.Fields;
foreach (Field field in fields)
{
field.Update(); // update all fields in headers
}
}
HeadersFooters footers = section.Footers; //Get all footers
foreach (HeaderFooter footer in footers)
{
Fields fields = footer.Range.Fields;
foreach (Field field in fields)
{
field.Update(); //update all fields in footers
}
}
}
document.Save();
document.Close();
}
catch (NullReferenceException)
{
System.Windows.Forms.MessageBox.Show("A valid file was not selected.");
}
}
}