本文介绍了将JCL安装到Delphi 10 Seattle中时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将JCL / JVCL安装到Delphi-10-Seattle中



我遇到以下错误:

'JclSysUtils.pas'中的第3034行是:

 如果(ProcessEvent.WaitForever = {$ IFDEF RTL280_UP} TJclWaitResult。{$ ENDIF RTL280_UP} wrSi​​gnaled)而不是GetExitCodeProcess(ProcessEvent.Handle ,结果),然后结果:= $ FFFFFFFF; 

我试图在Jedi邮件列表中发帖,但多年没有被触及。 p>

在哪里可以获取修复程序?

解决方案

使用GetIt软件包管理器集成到RadStudio IDE中以下载JCL。


I am trying to install JCL/JVCL into Delphi-10-Seattle

I got the following Error:

Line 3034 in 'JclSysUtils.pas' is:

if (ProcessEvent.WaitForever = {$IFDEF RTL280_UP}TJclWaitResult.{$ENDIF RTL280_UP}wrSignaled) and not GetExitCodeProcess(ProcessEvent.Handle, Result) then Result := $FFFFFFFF;

I tried to post in the Jedi mailing list but that hasn't been touched in years.

Where can I get a fix?

解决方案

Use the GetIt Package Manager integrated in your RadStudio IDE to download JCL.

这篇关于将JCL安装到Delphi 10 Seattle中时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-14 09:47