![]() |
|
#2
|
||||
|
||||
|
Hi sleake,
Try: Code:
Sub ConvertToGIF()
Application.ScreenUpdating = False
Dim i As Long, Rng As Range
With ActiveDocument
For i = .InlineShapes.count To 1 Step -1
Set Rng = .InlineShapes(i).Range
Rng.Cut
Rng.PasteSpecial Link:=False, DataType:=13, Placement:=wdInLine, DisplayAsIcon:=False
Next
End With
Set Rng = Nothing
Application.ScreenUpdating = True
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
| Tags |
| macro, macro find graphics, paste special |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Macro to convert text to endnote?
|
Orifacious | Word VBA | 27 | 03-29-2022 02:58 PM |
Macro to convert word file into pdf
|
cc9083 | Word VBA | 2 | 02-23-2015 01:22 AM |
Creating macro to convert/print to pdf
|
shabbaranks | Word | 3 | 05-18-2011 08:59 AM |
Excel convert format [h]:mm:ss to decimal
|
gchan2000 | Excel | 1 | 08-17-2010 01:36 PM |
| Convert a file from HTML to WORD format weblayout view | gtselvam | Word | 0 | 12-02-2008 03:53 AM |