D David Vestal May 5, 2004 #1 How can I create and use a .NET System.Collections.Queue from within VB6 code?
A Armin Zingler May 5, 2004 #2 David Vestal said: How can I create and use a .NET System.Collections.Queue from within VB6 code? Click to expand... Haven't tried it, but you could derive your own class from the Queue class and put it in a Classlibrary and register it for COM interop. I think you will have to add all members to be public and call mybase.member for each member. -- Armin How to quote and why: http://www.plig.net/nnq/nquote.html http://www.netmeister.org/news/learn2quote.html
David Vestal said: How can I create and use a .NET System.Collections.Queue from within VB6 code? Click to expand... Haven't tried it, but you could derive your own class from the Queue class and put it in a Classlibrary and register it for COM interop. I think you will have to add all members to be public and call mybase.member for each member. -- Armin How to quote and why: http://www.plig.net/nnq/nquote.html http://www.netmeister.org/news/learn2quote.html
H Herfried K. Wagner [MVP] May 5, 2004 #3 * David Vestal said: How can I create and use a .NET System.Collections.Queue from within VB6 code? Click to expand... You can't ;-).
* David Vestal said: How can I create and use a .NET System.Collections.Queue from within VB6 code? Click to expand... You can't ;-).
D David Vestal May 5, 2004 #4 (e-mail address removed) (Herfried K. Wagner [MVP]) wrote in You can't ;-). Click to expand... Bummer! I had been led to believe otherwise. Not even as a Com-Callable Wrapper? Not even with magical tools like tlbexp?
(e-mail address removed) (Herfried K. Wagner [MVP]) wrote in You can't ;-). Click to expand... Bummer! I had been led to believe otherwise. Not even as a Com-Callable Wrapper? Not even with magical tools like tlbexp?