Clipboard Full Notification

D

David McRitchie

This will clear the clipboard

Sub ClearClipBoard()
Application.CutCopyMode = False
End Sub

I think this would suppress the alerts

Application.DisplayAlerts = False
'... code here...
Application.DisplayAlerts = True

Chip Pearson has a page on use of the Clipboard, if
questions are not answered there you should have a better
idea of what to search on for other solutions.
http://www.cpearson.com/excel/clipboar.htm
 

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