Results 1 to 2 of 2

Thread: Embedded chart aktualisation

  1. #1

    Thread Starter
    New Member
    Join Date
    Jul 2003
    Posts
    5

    Embedded chart aktualisation

    Hi!
    Does anyone know the vba code for reloading the content of an embedded chart in word!?
    lg,
    Lord_Wanderer

  2. #2
    Fanatic Member WorkHorse's Avatar
    Join Date
    Jul 2002
    Location
    Where you live.
    Posts
    591
    In MS Word, OLE objects are Shapes or InlineShapes, but when linked they are also considered fields. The UpdateFields method will update embedded OLE objects. You could update a specific embedded chart with either of the following:

    VB Code:
    1. ActiveDocument.InlineShapes(1).Field.Update
    2.    
    3.     ' OR
    4.        
    5.     ActiveDocument.Fields(1).Update

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width