I am not sure from where you got that. In Jonathon's article at
http://www.word.mvps.org/FAQs/MacrosVBA/ManipulateClipboard.htm, it states:
This is how to clear the clipboard in VBA:
Dim MyData As DataObject
Set MyData = New DataObject
MyData.SetText ""
MyData.PutInClipboard

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
Thanks, we just tried this. It works with Word 97 but not Word 2003. Any
ideas for clearing the clipboard in 2003?
Thanks again
> I am not sure from where you got that. In Jonathon's article at
> http://www.word.mvps.org/FAQs/MacrosVBA/ManipulateClipboard.htm, it states:
[quoted text clipped - 17 lines]
> >
> > Thanks for your time.
Karl E. Peterson - 26 Jul 2007 01:45 GMT
> Thanks, we just tried this. It works with Word 97 but not Word 2003. Any
> ideas for clearing the clipboard in 2003?
http://www.google.com/search?q=emptyclipboard+vba

Signature
.NET: It's About Trust!
http://vfred.mvps.org
old man - 26 Jul 2007 01:56 GMT
Hi,
I use this to clear the clipboard in Word 2003.
Add these three API declerations at the top of your module:
Private Declare Function CloseClipboard Lib "user32" () As Long
Private Declare Function EmptyClipboard Lib "user32" () As Long
Private Declare Function OpenClipboard Lib "user32" (ByVal hwnd As Long) As
Long
this routine will do it:
Sub ClearClipboard()
OpenClipboard 0&
EmptyClipboard
CloseClipboard
end sub
What you may mean is that its very difficult to clear the Office Clipboard.
Old Man
> Thanks, we just tried this. It works with Word 97 but not Word 2003. Any
> ideas for clearing the clipboard in 2003?
[quoted text clipped - 22 lines]
> > >
> > > Thanks for your time.
Sammy - 26 Jul 2007 18:12 GMT
THANK YOU ALL, YOUR TIME IS APPRECIATED
> Hi,
>
[quoted text clipped - 45 lines]
> > > >
> > > > Thanks for your time.