Subject | RE: [IBO] Re: Hi Thomas Steinmaurer |
---|---|
Author | Thomas Steinmaurer |
Post date | 2003-11-04T08:47:32Z |
> I have tried it and it say ... file not found: 'DsgnIntf.dcu'It seems the IFDEF for Delphi 7 is missing.
Try this. Open IBOTST_Reg.pas and replace the following lines:
{$IFDEF VER140} // Delphi 6
DesignIntf, DesignMenus, DesignEditors,
{$ELSE} // Delphi 5 or prior
DsgnIntf,
{$ENDIF}
with:
{$IFDEF IBO_VCL60_OR_GREATER}
DesignIntf, DesignMenus, DesignEditors,
{$ELSE}
DsgnIntf,
{$ENDIF}
Save the file.
And recompile the IBOTST extension package afterwards.
You know, I'm still guessing without having Delphi 7 installed. ;-)
Thomas