D
david epsom dot com dot au
I have an array declared like this:
ReDim xy_listBid(0 To 1, 0 To cln.Count - 1) As Double
I would like to pass that array to a subroutine, ByRef,
so that values can be updated.
I can't change the array definition: it is later passed
to a C api. I can't use a variant.
How do I declare a function which takes that array as a parameter?
(david)
ReDim xy_listBid(0 To 1, 0 To cln.Count - 1) As Double
I would like to pass that array to a subroutine, ByRef,
so that values can be updated.
I can't change the array definition: it is later passed
to a C api. I can't use a variant.
How do I declare a function which takes that array as a parameter?
(david)