Access to VBA is equivalent to C # <T> list

I have a COM visible object written in C # that accepts a list of string arrays. Can I send a collection of string arrays from Access 2000 to this object and it works? If not, what is the best way to send multiple arrays of strings to my Access 2000 C # object?

+5
source share
2 answers

You cannot march generics, but using Collection on the VB6 side is a workable solution. Effectively convert your list into a standard collection.

Here is something more detailed: http://www.codeproject.com/KB/COM/netclasslistvb6.aspx?display=Print

+4

VBA vb.net. List (of T) vb.net, arraylist VBA, Access, .

0

All Articles