delt
unread,Jun 2, 2008, 6:40:13 PM6/2/08You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hi every one
am Working with an application in Borland Delphi 3... and I need to implement a Graph (Voltaje Vs Time) by using GWGraph1.PlotXvsY function (Measurement Studio) but when implement this function am receiving the Error: Project DL_MAIN.exe raised exception Class ERangeError with message 'Range Check error' Process Stopped. USe Step or Run to Continue.
Does anyone know if am missing something ?
No Errors when Complie.
This function has the followings parameters: CWGraph1.PlotXvsY(xData: OleVariant; yData: OleVariant; bchartPerRow: OleVariant);
Var
v, t: Integer
TimeOle: array[1..1000] of OleVariant;
VoltOle: array[1..1000] of OleVariant;
begin
For v:= 1 to DatVolt[v] Do
VoltOle[v] : DatVolt[v];
For t:= 1 to DatTime[t] Do
TimeOle[t] : DatTime[t];
CWGraph1.PlotXvsY(TimeOle[t], VoltOle[v], False);
end;
Thanks for your help in advance..