VBA and DLL written in VB 2005

L

Len

I am going to create a DLL using VB 2005 and call its methods from VBA code.
One of the methods requires as an argument an array of elements having
different data types. On the VBA (calling) side I can prepare such array
using variant data type. On the DLL side I should use the object data type to
declare such array since the variant data type is gone in VB 2005. Can I
expect compatibility issues in such scenario?

Thank you.
 
Top