Clipboard

  • Thread starter Thread starter Clipboard Junkie
  • Start date Start date
C

Clipboard Junkie

I have a user that usually has a bunch of stuff on the
clipboard, and I'm looking for a quick method this user
can use to wipe everything from the clipboard. At this
point, I'd prefer a VB.NET solution, but if I have to use
API and/or VBScript, I don't care! It's causing some
real problems with the users machine have 200+ MB sitting
on the clipboard.

Thanks
 
Clipboard Junkie,

What if you place an empty object in the clipboard?

Clipboard.SetDataObject("")
or
Clipboard.SetDataObject(new object)

Hope this helps you
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top