Clearing the Clipboard

lothos12345

Junior Contributor
Joined
May 2, 2002
Messages
294
Location
Texas
In visual basic.net 2003 how do you clear the system clipboard? All the options I have is the getdataobject and setdataobject. Any help offered is greatly appreciated.
 
Visual Basic:
    <DllImport("ole32.dll")> _
    Private Shared Function OleSetClipboard(ByVal theDataObject As IDataObject) As Integer
    End Function

and send nothing. Don't know a .Net way...
 
Back
Top