Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I Clear the Contents on the clipboard. I have
tried using Application.CutCopyMode = False, but it does not clear the clipboard. Any help would be appreciated. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On you worksheet click view toolbar and select clipboard. There is a
Icon on it that will delete the clipboard contents. HTH Charle -- Message posted from http://www.ExcelForum.com |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
that will work if you copied cells to the clipboard.
You can use the API for others. Previously posted by Chip Pearson: Public Declare Function OpenClipboard Lib _ "user32" (ByVal hwnd As Long) As Long Public Declare Function CloseClipboard Lib _ "user32" () As Long Public Declare Function EmptyClipboard Lib _ "user32" () As Long Sub ClearClipboard() OpenClipboard 0& EmptyClipboard CloseClipboard End Sub -- Regards, Tom Ogilvy "Ronbo" wrote in message ... How do I Clear the Contents on the clipboard. I have tried using Application.CutCopyMode = False, but it does not clear the clipboard. Any help would be appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Where does Ms XL store the clipboard ? or where does MS Windowsstore clipboard ? | Setting up and Configuration of Excel | |||
Where does Ms XL store the clipboard ? or where does MS Windowsstore clipboard ? | Setting up and Configuration of Excel | |||
Clipboard empty but still get waring that clipboard is full | Excel Discussion (Misc queries) | |||
Clipboard | New Users to Excel | |||
Clipboard | Excel Programming |