delphi不能调用主窗体中的自定义函数
这个自定义函数在主窗体的type之下声明,在主窗体中可成功调用。新窗体调用它的代码:implementationusesUnit1;{$R*.dfm}procedureT...
这个自定义函数在主窗体的type之下声明,在主窗体中可成功调用。新窗体调用它的代码:
implementation
uses Unit1;
{$R *.dfm}
procedure TForm2.Btn2Click(Sender: TObject);
var
n,m:integer;
begin
n:=strtoint(edit1.Text );
m:=Unit1.myselfun(n);//这里调用单元1的自定义函数
label1.Caption :=inttostr(m);
edit1.SetFocus ;
end;
[Error] Unit2.pas(53): Undeclared identifier: 'myselfun' 展开
implementation
uses Unit1;
{$R *.dfm}
procedure TForm2.Btn2Click(Sender: TObject);
var
n,m:integer;
begin
n:=strtoint(edit1.Text );
m:=Unit1.myselfun(n);//这里调用单元1的自定义函数
label1.Caption :=inttostr(m);
edit1.SetFocus ;
end;
[Error] Unit2.pas(53): Undeclared identifier: 'myselfun' 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询