How delete the cliboard

  • Thread starter Thread starter Aldo Miele
  • Start date Start date
A

Aldo Miele

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
 
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
 
Back
Top