T
TIANXU
Unregistered / Unconfirmed
GUEST, unregistred user!
我仿照例子构造 MOVE 函数
procedure TframMenu.Move(AFormClass: TIWAppFormClass);
begin
TIWAppForm(RWebApplication.ActiveForm).Release;
AFormClass.Create(RWebApplication).Show;
end;
可是编译时却报错
[Error] IWUnit1.pas(22): Undeclared identifier: 'RwebApplication'
[Error] IWUnit1.pas(22): ')' expected but identifier 'activeform' found
[Fatal Error] HR.dpr(7): Could not compile used unit 'IWUnit1.pas'
为什么????我用的是D7
procedure TframMenu.Move(AFormClass: TIWAppFormClass);
begin
TIWAppForm(RWebApplication.ActiveForm).Release;
AFormClass.Create(RWebApplication).Show;
end;
可是编译时却报错
[Error] IWUnit1.pas(22): Undeclared identifier: 'RwebApplication'
[Error] IWUnit1.pas(22): ')' expected but identifier 'activeform' found
[Fatal Error] HR.dpr(7): Could not compile used unit 'IWUnit1.pas'
为什么????我用的是D7