Page 1 of 1

Delphi 8

Posted: Thu Jun 03, 2004 9:01 am
by slim
Hi,

I have just installed a registered version 5.3.0 under Delphi 8. While compiling the dpk file I got the following errors:

[Error] File not found: '_smexcl.nfm'
[Error] File not found: 'TSiLang_D8.siComp.TsiLang.bmp'
[Error] File not found: 'TSiLang_D8.siLangRT.TsiLangRT.bmp'

These files are missing in the units folder

Where can I get them from?

Regards

Slim

Posted: Fri Jun 04, 2004 6:38 am
by isiticov
Missed files sent by email. Sorry.

Posted: Mon Aug 02, 2004 7:25 pm
by msabourin
isiticov wrote:Missed files sent by email. Sorry.
I seem to have the same problem. Are these files publicly available?
Thanks.

Posted: Tue Aug 03, 2004 3:52 am
by isiticov

Posted: Thu Aug 05, 2004 12:40 pm
by msabourin
Thank you for your reply.

But unless I'm mistaking, the zip file does not contain 2 of the required files for compile, namely 'TSiLang_D8.siComp.TsiLang.bmp' and 'TSiLang_D8.siLangRT.TsiLangRT.bmp'.

Regards,

Michel Sabourin

Posted: Mon Aug 09, 2004 5:52 am
by isiticov
Sorry,
Just edit sireg.pas file and replace

Code: Select all

{$IFDEF DELPHI8}
{$R 'TSiLang_D8.siComp.TsiLang.bmp'}
{$R 'TSiLang_D8.siLangRT.TsiLangRT.bmp'}
{$ENDIF}
with

Code: Select all

{$IFDEF DELPHI8}
{$R 'siComp.TsiLang.bmp'}
{$R 'siLangRT.TsiLangRT.bmp'}
{$ENDIF}
In few days there will be new version release and this file will contain corrected code.