View Single Post
  #2   Report Post  
kesie kesie is offline
Junior Member
 
Posts: 1
Smile

This problem will appear frequently for many office2003 users in the future. You could try this Excel-VBA code (I hope you've some Excel-VBA basic knowlegde)

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

(this code is not mine, found it somewere on internet)
Regards, Kesie from Holland...


Quote:
Originally Posted by Elliot Gingold
I am getting a lot of trouble when using Excel 2003 with the error "Unable to empty Clipboard"
Elliot