Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

OLE Bookmarks added by cut-and-paste

81 views
Skip to first unread message

Brett Zamir

unread,
Jun 28, 2005, 5:59:26 PM6/28/05
to
Hello,

I was wondering if there were any way (besides manually deleting them) to
avoid the OLE Bookmarks being automatically added to a document when one
does a cut-and-paste operation?

Thanks,
Brett

Daiya Mitchell

unread,
Jun 28, 2005, 9:17:48 PM6/28/05
to
> I was wondering if there were any way (besides manually deleting them) to
> avoid the OLE Bookmarks being automatically added to a document when one
> does a cut-and-paste operation?

This isn't supposed to happen, and it doesn't happen to everyone.

Do you have YouControl installed? Any other clipboard utilities installed?

Does it happen all the time? Current known triggers, aside from YouControl,
are copying and then switching to another application, while Classic is
running. Can you narrow down the circumstances under which you see this?
All user accounts? What version of Word and OS?

Do you really see it on cut? as so far it has only been reported on copy and
paste, I think, and paste is not always necessary.

(In my case, the cause is YouControl plus copy, but I just run a delete
macro frequently)

Here is a macro provided by a friendly poster here (Kristina Conceicao) that
will delete all OLE_Link Bookmarks for you, as those are the type that are
randomly generated:

Sub RemoveOLE_Bmarks()

Dim i As Long
For i = ActiveDocument.Bookmarks.Count To 1 Step -1
If UCase(Left(ActiveDocument.Bookmarks(i).Name, 8)) =
"OLE_LINK" Then
ActiveDocument.Bookmarks(i).Delete
End If
Next i

End Sub

If this is gibberish to you and you don't know what to do with it, see here:
http://daiya.mvps.org/installMacroMac.htm

--
Daiya Mitchell, MVP Mac/Word
Word FAQ: http://www.word.mvps.org/
MacWord Tips: <http://www.word.mvps.org/MacWordNew/>
What's an MVP? A volunteer! Read the FAQ: http://mvp.support.microsoft.com/

Brett Zamir

unread,
Jun 29, 2005, 1:48:46 PM6/29/05
to
We do have a clipboard sharing program...Not sure if it's that...I can try
that though, maybe, thanks!

Ironically, I used the clipboard sharing program to copy the macro you
supplied into the other computer with the problem... :)

Anyhow, thanks...

Brett

On 6/28/05 6:17 PM, in article BEE744CC.37068%daiya...@mvps.org.INVALID,

0 new messages