09-22-2005 10:37 AM
Hello all,
I'm trying to migrate the fft routine from VB6.0 to VB.net and having some issues. The Routine calls for:
cwdsp1.fft(xr as object,xi as object,yr as object, yi as object)
So I say:
Dim r1() As Object
Dim i1() As Object
Dim r2() As Object
Dim i2() As Object
I fill up my arrays here then....
Myform.CWDSP1.FFT(r1, i1, r2, i2) ' FFT cw style
Here I get an error saying "type mismatch", even though it asks for objects and I'm giving it objects.
Any Ideas? Thanx in advance,
B
09-26-2005 10:26 AM
09-26-2005 10:43 AM
09-26-2005 01:47 PM
09-27-2005 06:28 PM