View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
David McRitchie David McRitchie is offline
external usenet poster
 
Posts: 903
Default Clipboard Full Notification

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

---
HTH,
David McRitchie, Microsoft MVP - Excel
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"Starky77" wrote in message ...
How do I disable the Clipboard Full Notification in Excel 2000?