Clipboard

G

Guest

I'm trying to copy/paste via the clipboard a queue of objects

Clipboard.SetDataObject(myQueue) 'the queue contains 7 of my objects

some place else I do

iData = Clipboard.GetDataObject()

myQueue = DirectCast(iData.GetData("System.Collections.Queue", True), Queue)

myQueue always ends up referencing nothing

is it even possible to use the clipboard to post a queue of objects?
 

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

Top