Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
his there a code to clear-up all that is stored in the office clipboard and
windows clipboard other than application.cutcopymode = false thanks Michel |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please don't repost the same question to another thread it makes
things difficult for everyone and wastes time. See J.E.'s answer in http://google.com/groups?threadm=jem....microsoft.com Not knowing anything about Macs, I would assume his solution provided an answer to you and explained to the rest of us why you don't want the obvious answer, and JE supplied a reason why you might want something different. Thanks for posting the original question with the detail of not wanting the obvious answer -- that certainly saved one round of back and forth conversation, but the reason would have been good to include -- we can only guess if JE guessed right. Please continue in your original thread. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Public Declare Function OpenClipboard Lib "user32" ( _
ByVal hwnd AsLong) 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 Put declarations in a General module. -- Regards, Tom Ogilvy MD wrote in message ... his there a code to clear-up all that is stored in the office clipboard and windows clipboard other than application.cutcopymode = false thanks Michel |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Public Declare Function OpenClipboard Lib "user32" ( _
ByVal hwnd AsLong) 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 Put declarations in a General module. -- Regards, Tom Ogilvy "MD" wrote in message ... his there a code to clear-up all that is stored in the office clipboard and windows clipboard other than application.cutcopymode = false thanks Michel |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Clipboard | Excel Discussion (Misc queries) | |||
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 | Excel Discussion (Misc queries) |