How to pass data from VB.NET to ActiveX.exe?
I've created a MAPI Wrapper in VB6 and compiled it as an ActiveX.exe so I can use it in my VB.NET project. The project is a windows service that takes data from a webservice passes data to activex.exe and it creates public folder records in exchange 2003.
I was wondering if开发者_如何学Python anyone know how I could pass a collection to my activex.exe?
Thanks
I'd suggest looking at the System.VisualBasic.Collection class:
http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.collection.aspx
You might be able to take your current .net collection/array and put inside one of those collections and then send across.
精彩评论