C cxblodge Unregistered / Unconfirmed GUEST, unregistred user! 2006-04-14 #1 在Frame中,要写上代码转到另一个页面,用Move(T.....)什么的,怎么会出错呀~~请各位多多指教··
S szlbz Unregistered / Unconfirmed GUEST, unregistred user! 2006-04-16 #3 先定义一个过程Move,然后再调用另一个页面,如: move(TUserLoginForm); procedure Move(AFormClass: TIWAppFormClass); begin // Release the current form TIWAppForm(WebApplication.ActiveForm).Release; // Create the next form AFormClass.Create(WebApplication).Show; end;
先定义一个过程Move,然后再调用另一个页面,如: move(TUserLoginForm); procedure Move(AFormClass: TIWAppFormClass); begin // Release the current form TIWAppForm(WebApplication.ActiveForm).Release; // Create the next form AFormClass.Create(WebApplication).Show; end;
C cxblodge Unregistered / Unconfirmed GUEST, unregistred user! 2006-04-16 #4 还要引用什么单元吗?IW版本 7。2。41 在没写Move过程之前是:Variable required,这个错误 在写了Move过程之后: private procedure Move(AFormClass: TIWAppFormClass); Procedure TIWFrame1.Move(AFormclass: TIWAppFormClass); begin TIWAppForm(WebApplication.ActiveForm).Release; AFormClass.Create(WebApplication).Show; end; 错误:Undeclared identifier "WebApplication"
还要引用什么单元吗?IW版本 7。2。41 在没写Move过程之前是:Variable required,这个错误 在写了Move过程之后: private procedure Move(AFormClass: TIWAppFormClass); Procedure TIWFrame1.Move(AFormclass: TIWAppFormClass); begin TIWAppForm(WebApplication.ActiveForm).Release; AFormClass.Create(WebApplication).Show; end; 错误:Undeclared identifier "WebApplication"
S szlbz Unregistered / Unconfirmed GUEST, unregistred user! 2006-04-16 #5 procedure Move(AFormClass: TIWAppFormClass);我没有放在Private
S szlbz Unregistered / Unconfirmed GUEST, unregistred user! 2006-04-16 #7 你可以下载我写的一个程序看看能否对你有帮助。http://www.tomore.com/dispdocnew.php?id=37282
C cxblodge Unregistered / Unconfirmed GUEST, unregistred user! 2006-04-16 #8 这个我下过了,也看了,就是照那样写的,就是会出错,会不会是版本的问题呢,你是用什么版本做的呀,我是用7.2.41.