|
系统运行提示如下错误:
起因是使用的 X3检测修复工具的删除DLL功能,
通过初始化资源 重新导入相关信息, 系统初始化功能编译都没问题,可运行功能还是提示如图错误, 错误停留在 下划线代码
function TSystemInterfaceManager.CreateNew(const URL: string): TAbstractSystemInterface;
const
SSystemInterface = 'SystemInterface.Library';
var
lObj: TBizObject;
begin
lObj := TSystemCore.CreateBizObject(BizSys.GlobalContext,
TSystemCore.UITheme.InternalFixURL(URL, SSystemInterface));
try
[U][B]Result := lObj as TAbstractSystemInterface; [/B] [/U]
FLoaded.AddObject(URL, lObj);
except
lObj.Free;
raise;
end;
end;
|
|