Cannot empty the clipboard

G

Guest

I use Excel VBA to create a standard e-mail (only contains plain text). This
text is linked within Excel.
Problem is that it has been working but now only an empty e-mail is the
result. No body text only the header.
When checking the clipboard it appears that nothing is copied into it. Never
min using CTRL+C/CTR+V or via the menu !
When checking the clipboard nothing is there and still I get message "cannot
empty clipboard"

Pls advice

Cor Verheul
 
G

Guest

I am stuck in break mode. Your instructions say to "fix your macro errors
and then press therun button to continue". How do I fix my macro? This is
the macro I copied from your link.

Declare Function CloseClipboard Lib "user32" () As Long
Declare Function EmptyClipboard Lib "user32" () As Long
Declare Function OpenClipboard Lib "user32" (ByVal hwnd As Long) As Long

Sub ClearClipboard()
OpenClipboard 0&
EmptyClipboard
CloseClipboard
End Sub
 
B

Bas V

Goeie middag!

I have problems also with this message in Excel 2007.
Use taskmanager to end process called rdclip.exe.
That may help you.
 
B

Bas V

I meant rdpclip.exe
--
Bas V


Bas V said:
Goeie middag!

I have problems also with this message in Excel 2007.
Use taskmanager to end process called rdclip.exe.
That may help you.
 
U

USAOz

And if this .exe is NOT in the Processes list, THEN what? This clipboard
error is driving me NUTS!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top