N
necho_iw
Unregistered / Unconfirmed
GUEST, unregistred user!
我在intraweb中新建了一frame,内有一些联接,并放在formmain窗体中,现有另一窗体名为formmain2,我希望点击frame中的连接从而转到formmain2.代码如下
procedure Th.manageClick(Sender: TObject);//th为frame
begin
Tformmain2.Create(Webapplication);
parent.Free;
end;
编译时总是出错,提示webapplication未声明。
而我在窗体formmain1中直接设一个联结onclick,就能正常运行。我看了一些其它的例子,也是在frame中设置却能运行,这是为什么?请高手做答!急,就快要交毕业设计了!!!
procedure Th.manageClick(Sender: TObject);//th为frame
begin
Tformmain2.Create(Webapplication);
parent.Free;
end;
编译时总是出错,提示webapplication未声明。
而我在窗体formmain1中直接设一个联结onclick,就能正常运行。我看了一些其它的例子,也是在frame中设置却能运行,这是为什么?请高手做答!急,就快要交毕业设计了!!!