Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 36
Default Ckear Clipboard

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Ckear Clipboard

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Ckear Clipboard

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Where does Ms XL store the clipboard ? or where does MS Windowsstore clipboard ? Subu Setting up and Configuration of Excel 1 May 18th 09 06:56 AM
Where does Ms XL store the clipboard ? or where does MS Windowsstore clipboard ? Subu Setting up and Configuration of Excel 0 May 5th 09 01:20 PM
Clipboard empty but still get waring that clipboard is full Steve Excel Discussion (Misc queries) 0 June 17th 08 09:05 PM
Clipboard George New Users to Excel 1 April 13th 06 10:01 AM
Clipboard Ed Excel Programming 2 February 6th 04 06:42 PM


All times are GMT +1. The time now is 04:35 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"