View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Brian Murphy Brian Murphy is offline
external usenet poster
 
Posts: 126
Default how to send a variable size VBA array to a C struct

In VBA I can create a user defined Type that contains fixed size
arrays, and pass one of these to a C DLL where it goes into a struct,
if the struct was compiled with the correct array sizes ahead of time.

Is it possible to do this with variable size arrays?

Thanks,

Brian Murphy