Clipboard in VB.NET ?!?

  • Thread starter Thread starter Mike Labosh
  • Start date Start date
M

Mike Labosh

Two items from the .NET Framework SDK (VS.NET 2K2) -- Actual pasted text
from the help topics.

===========================
The Clipboard Class
===========================
..NET Framework Class Library

Clipboard Class [Visual Basic]

Provides methods to place data on and retrieve data from the system
Clipboard. This class cannot be inherited.

For a list of all members of this type, see [Clipboard Members.] <--
clicked here

===========================
Clipboard Members
===========================
Public Methods

GetDataObject Retrieves the data that is currently on the system Clipboard.
SetDataObject Overloaded. Places data on the system Clipboard.

===========================
Now here's what I *actually get*
===========================

http://www.vbsensei.com/clipboardcode.jpg

What's up with that?!? Am I missing something obvious here?!?

--
Peace & happy computing,

Mike Labosh, MCSD MCT
Owner, vbSensei.Com
"Escriba coda ergo sum." -- vbSensei
 
<snippage>

Duh. Nevermind, I had a variable called "clipboard" declared as boolean for
whether or not there was anything on the real "Clipboard". hehe I did a
end-user thing!
--
Peace & happy computing,

Mike Labosh, MCSD MCT
Owner, vbSensei.Com
"Escriba coda ergo sum." -- vbSensei
 
Back
Top