Subject RE: [IBO] Re: Hi Thomas Steinmaurer
Author Thomas Steinmaurer
> 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