AddVector
Posted: Mon Mar 15, 2010 11:24 am
I have an Problem with the following code:
the execution stops with the message that the object does not support the property or method!
Does anybody know about it? What is wrong in my code?
Code: Select all
For T = 0 To .SeriesCount - 1
Next T
.AddSeries (scVector3D)
Do While Not rstTable_2.EOF
.Series(T).AddVector 0, 0, 0, rstTable_2.Fields("X1"), rstTable_2.Fields("Y1"), rstTable_2.Fields("Z1"), "", clTeeColor
rstTable_2.MoveNext
Loop
rstTable.Close
Does anybody know about it? What is wrong in my code?