I have done quite a bit of searching for this, but have yet
to find any solution in the forums. All attempts thus far (including
attempting to utilize the SafeArray redimensioning) have caused
some pretty spectacular yet unsatisfying results (i.e. GPF).
I have a simple struct defined in both VB and PB (and yes,
the alignment is in order). On the VB side the array is dimensioned
as follows: Dim SomeStruct() as SampleStruct.
Any attempts at redimensioning blow badly. Am I stuck with
Dim SomeStruct(1 to 100) as SampleStruct
on the VB side and "handle" any empty elements or needed extra
elements, or is there a manner in which I can ReDim the array of
VB structs within VB?
Profuse thanks,
André-Tascha
------------------
http://www.nash-lamme.com
to find any solution in the forums. All attempts thus far (including
attempting to utilize the SafeArray redimensioning) have caused
some pretty spectacular yet unsatisfying results (i.e. GPF).
I have a simple struct defined in both VB and PB (and yes,
the alignment is in order). On the VB side the array is dimensioned
as follows: Dim SomeStruct() as SampleStruct.
Any attempts at redimensioning blow badly. Am I stuck with
Dim SomeStruct(1 to 100) as SampleStruct
on the VB side and "handle" any empty elements or needed extra
elements, or is there a manner in which I can ReDim the array of
VB structs within VB?
Profuse thanks,
André-Tascha
------------------
http://www.nash-lamme.com
Comment