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?
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?