How delete the cliboard

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
 
E

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
 
Top