Hi,
I'm developing a Visual Basic .NET application. I've integrated an OCX in my application.
One method of my OCX has this prototype
MyMethod (FLOAT * data)
where data is a pointer to a vector.
In my VB application, this method has been imported as
MyMethod (ByRef data As Single)
Do you have some advice on how to pass the vector pointer to "MyMethod"?
I can't change the OCX.
Thanks in advance
I'm developing a Visual Basic .NET application. I've integrated an OCX in my application.
One method of my OCX has this prototype
MyMethod (FLOAT * data)
where data is a pointer to a vector.
In my VB application, this method has been imported as
MyMethod (ByRef data As Single)
Do you have some advice on how to pass the vector pointer to "MyMethod"?
I can't change the OCX.
Thanks in advance