当前位置: 代码迷 >> Delphi >> 请大侠指点:怎么在Delphi中调用visual graph控件中的函数
  详细解决方案

请大侠指点:怎么在Delphi中调用visual graph控件中的函数

热度:8336   发布时间:2013-02-25 00:00:00.0
请大侠指点:如何在Delphi中调用visual graph控件中的函数
如题,请大侠帮我写一个简单实现的函数,我在Delphi中放入一个vgctrl,然后在form窗体上用button可以调用vg中的函数。谢谢……
------解决方案--------------------------------------------------------
最好有一个小例子。
------解决方案--------------------------------------------------------
该回复于2009-04-23 17:27:47被版主删除
------解决方案--------------------------------------------------------
在线等待》》》》》
------解决方案--------------------------------------------------------
我的代码是这样写的:
procedure TForm1.Button1Click(Sender: TObject);
var
    asheet:ISheet;
    s:String;
begin
    vgctrl1.Execute("x=2;y=3;return x+y");
end;

procedure TForm1.FormShow(Sender: TObject);
var
s:String;
begin
    s:='C:\Documents and Settings\Administrator\Desktop\VG\';
    vgctrl1.Run('');
    vgctrl1.Library_:=true;
end;

调试中红色是报错处:
[Error] Unit1.pas(33): Illegal character in input file: '"' ($22)
[Error] Unit1.pas(33): Missing operator or semicolon
[Fatal Error] Project1.dpr(5): Could not compile used unit 'Unit1.pas'

请大侠指点~~~~
  相关解决方案