I have an active-x dll, and there's an init function in a class in it.
I want to pass an array of UDTs into the function, but VB won't allow me to pass a UDT to a late bound function.
Any thoughts ?
Printable View
I have an active-x dll, and there's an init function in a class in it.
I want to pass an array of UDTs into the function, but VB won't allow me to pass a UDT to a late bound function.
Any thoughts ?
I could convert the entire UDT to a string I suppose...
try a variant array.
When I change the function declaration of the function im tyring to pass the data to in the activex dll, i get the same error :(
I would think Udts can be replaced by a class and passed to a dll as object or variant.
Yeah I know except I would have to rewrite large parts of my application to do that.