Results 1 to 3 of 3

Thread: Filename field does not update automatically

  1. #1
    Join Date
    Feb 2009
    Posts
    66

    Filename field does not update automatically

    hello friends,

    When I tried to open a document in Microsoft Word 2003 , the FILENAME field (and path if applicable) does not update to the name and the location of the file that I just opened. How can I update the filename field in Word ?
    Can anyone help.....

  2. #2
    Join Date
    Apr 2008
    Posts
    4,642

    Re: Filename field does not update automatically

    To automatically update the field that is contained in your Word document, create an AutoOpen macro. To do this, follow these steps:

    1. Start Word and open the document that contains the field that will not update automatically.

    2. In Microsoft Office Word 2003 or in Word 2002, on the Tools menu, point to Macro, and then click Macros.
      In Microsoft Office Word 2007, click the Developer tab, and then click Macros in the Code group.

    3. In the Macros dialog box, follow these steps:
      • In the Macro name box, type AutoOpen.
      • Change the Macros in box to your document file name.
      • Click Create.


    4. In the code sheet of the Microsoft Visual Basic editor, you should now see the beginnings of your AutoOpen macro. You should see the following:

      Code:
      Sub AutoOpen()
      '
      ' AutoOpen Macro
      ' Macro created date by username
      '
      
      End Sub
    5. Type, or copy and paste, the following macro code into your AutoOpen macro:

      Code:
      Dim aStory As Range
         Dim aField As Field
      
         For Each aStory In ActiveDocument.StoryRanges
      
            For Each aField In aStory.Fields
               aField.Update
            Next aField
      
         Next aStory
    6. Your AutoOpen macro should now look like:

      Code:
      Sub AutoOpen()
      '
      ' AutoOpen Macro
      ' Macro created date by username
      '
      
         Dim aStory As Range
         Dim aField As Field
      
        For Each aStory In ActiveDocument.StoryRanges
      
            For Each aField In aStory.Fields
               aField.Update
            Next aField
      
         Next aStory
      
      End Sub
    7. On the File menu, click Save Filename.

    8. On the File menu, click Close and Return to Microsoft Word.

    9. In Word 2003 or Word 2002, on the Tools menu, point to Macro, and then click Security.
      In Word 2007, click the Developer tab, and then click Macro Security in the Code group.

    10. In Word 2003 or Word 2002, on the Security Level tab, change your security level to Medium, and then click OK.
      In Word 2007, under Macro Settings, click to select the Enable all macros option.

    11. Close your document.

    12. Reopen your Word document.

    13. Click Enable Macros in the Security Warning dialog box.


    The field should now update automatically in your Word document.

  3. #3
    Join Date
    May 2008
    Posts
    4,570

    Re: Filename field does not update automatically

    You can also update the filename field manually - just select the field that is contained in your Word document, and then press F9.

Similar Threads

  1. Replies: 4
    Last Post: 03-11-2011, 09:43 PM
  2. Automatically update player mode for NBA 2K12
    By Jasseen in forum Video Games
    Replies: 3
    Last Post: 07-10-2011, 08:12 PM
  3. How can I update each field within a document at once?
    By Rena in forum Windows Software
    Replies: 5
    Last Post: 25-04-2011, 06:17 AM
  4. Multi Field value field in Microsoft Access
    By Erubiel in forum Windows Software
    Replies: 3
    Last Post: 20-11-2009, 12:55 AM
  5. Unable to update memo field
    By Rixwel in forum Software Development
    Replies: 3
    Last Post: 24-09-2009, 09:55 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,856,695.11987 seconds with 17 queries