views:

14

answers:

1

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 anyone know how I could pass a collection to my activex.exe?

Thanks

A: 

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.

ho1