Am I missing something here - will CTRL+A - then - CTRL+SHIFT+F9 not do what
you want?

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Hi,
> I'm very new to macros and VBA, and need help.
[quoted text clipped - 41 lines]
>
> Nicola :)
Dragoncity - 27 Oct 2006 13:01 GMT
Sorry, what does CTRL+SHIFT+F9 do?
If it does what I want then that's great! :)
> Am I missing something here - will CTRL+A - then - CTRL+SHIFT+F9 not do what
> you want?
[quoted text clipped - 44 lines]
> >
> > Nicola :)
Dragoncity - 27 Oct 2006 13:05 GMT
My bad, should have tried it first.
That's a great shortcut, thanks! I converts them easily :)
Thank you so much, that's saved me a lot of hassle!
Nicola
> Am I missing something here - will CTRL+A - then - CTRL+SHIFT+F9 not do what
> you want?
[quoted text clipped - 44 lines]
> >
> > Nicola :)
Dragoncity - 27 Oct 2006 13:40 GMT
Sorry, after investigation I discovered that it removed all of the hyperlinks
as well. Although having hyperlinks in Word is not ideal, it's better than
nothing!
So I still need to find a way of repeating the code down the document.
Suggestions? Ta.
> Am I missing something here - will CTRL+A - then - CTRL+SHIFT+F9 not do what
> you want?
[quoted text clipped - 44 lines]
> >
> > Nicola :)
Dave Lett - 30 Oct 2006 15:47 GMT
Hi,
Does the following meet your needs?
Dim iFld As Integer
For iFld = ActiveDocument.Fields.Count To 1 Step -1
With ActiveDocument.Fields(iFld)
If .Type = wdFieldIncludePicture Then
.Unlink
End If
End With
Next iFld
HTH,
Dave
> Sorry, after investigation I discovered that it removed all of the
> hyperlinks
[quoted text clipped - 53 lines]
>> >
>> > Nicola :)
Dragoncity - 30 Oct 2006 16:09 GMT
Perfect, thanks! :)
Nicola
> Hi,
>
[quoted text clipped - 71 lines]
> >> >
> >> > Nicola :)