intraweb for D6,编译的System.RTLVersion问题 ( 积分: 100 )

  • 主题发起人 主题发起人 天堂鸟6420
  • 开始时间 开始时间

天堂鸟6420

Unregistered / Unconfirmed
GUEST, unregistred user!
我这有个问题,不知是否可以解决。我下载了一个intraweb控件,7.09版本。有注册码,而且是破解过的,。可是安装到delphi6.0 ,安装过程中没有问题,所有都是成功。可是新建Intraweb后,编译出现[Fatal Error] Project1.dpr(8): Unit InHTTPWebBrokerBridge was compiled with a different version of System.RTLVersion。,从网上找过其他的注册码,注册完后还是同样的提示。请问如何解决!
 
我这有个问题,不知是否可以解决。我下载了一个intraweb控件,7.09版本。有注册码,而且是破解过的,。可是安装到delphi6.0 ,安装过程中没有问题,所有都是成功。可是新建Intraweb后,编译出现[Fatal Error] Project1.dpr(8): Unit InHTTPWebBrokerBridge was compiled with a different version of System.RTLVersion。,从网上找过其他的注册码,注册完后还是同样的提示。请问如何解决!
 
D6已经打补丁UP2
system.pas 中RTLVersion的部分如下,E文太臭,不明白
(* You can use RTLVersion in $IF expressions to test the runtime library
version level independently of the compiler version level.
Example: {$IF RTLVersion >= 16.2} ... {$IFEND} *)

const
RTLVersion = 14.20;

{$EXTERNALSYM CompilerVersion}

(*
const
CompilerVersion = 0.0;

CompilerVersion is assigned a value by the compiler when
the system unit is compiled. It indicates the revision level of the
compiler features / language syntax, which may advance independently of
the RTLVersion. CompilerVersion can be tested in $IF expressions and
should be used instead of testing for the VERxxx conditional define.
Always test for greater than or less than a known revision level.
It's a bad idea to test for a specific revision level.
*)
 
不懂,帮你顶一下
 
是delphi的RTL的update2补丁
不是delphi自己的update2补丁
两者不一样的,呵呵
 
帮我看看多语言的解决方法
http://www.delphibbs.com/delphibbs/dispq.asp?lid=3155257
 
谢谢jinkxboy,问题解决
一个新的问题,就是创建一个form时我使用
procedure Move(AFormClass: TIWAppFormClass);
begin
// 释放当前窗体
TIWAppForm(RWebApplication.ActiveForm).Release;
// 创建下一个窗体
AFormClass.Create(RWebApplication).Show;
end;

编译提示 [Error] zpublicdef.pas(48): Undeclared identifier: 'RWebApplication'
能帮我看看吗
iw7.0 for D6
 
接受答案了.
 
后退
顶部