06-02-2008 05:39 PM
06-13-2008 06:48 PM
Hi Delt Measurment Studio doesn’t is not officially supported in Delphi. Some issues could be solved with the update of Delphi 3 (Version 3.0 (Build 5.83)). Some of this errors are caused by the way they called the ActiveX.
Best Regards
11-10-2010 04:03 AM
Hello,
you can use this code in delphi to plot SINE function ( Hope this will help anyone who use Delphi and NI components)
var
x: OleVariant;
y: OleVariant;
I: Integer;
XData:Variant ;
procedure ........
begin
x:=VarArrayCreate([1,40],varDouble);
y:=VarArrayCreate([1,40],varDouble);
for I := 1 to 40 do
begin
x[I]:=I;
y[I]:=sin(I/2.0);
end;
CWGraph1.PlotXvsY(x,y,True);
end;