A Aldo Miele Jan 15, 2004 #1 I need to know under windows Xp how is possible thru a Excel Macro to delete the values in the clipboard? Clipboard.clear dosnt' work
I need to know under windows Xp how is possible thru a Excel Macro to delete the values in the clipboard? Clipboard.clear dosnt' work
E Ed Jan 15, 2004 #4 This is how I do it with Windows 2000 and Excel 2000: Dim doFName As MSForms.DataObject Set doFName = New DataObject doFName.SetText "" doFName.PutInClipboard ' clears clipboard HTH Ed
This is how I do it with Windows 2000 and Excel 2000: Dim doFName As MSForms.DataObject Set doFName = New DataObject doFName.SetText "" doFName.PutInClipboard ' clears clipboard HTH Ed