Delphi 8

All announcements, questions and issues related to the TsiLang Components Suite.
Post Reply
slim
Posts: 1
Joined: Thu Jun 03, 2004 8:52 am

Delphi 8

Post 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
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

Missed files sent by email. Sorry.
msabourin
Posts: 3
Joined: Mon Aug 02, 2004 7:16 pm

Post by msabourin »

isiticov wrote:Missed files sent by email. Sorry.
I seem to have the same problem. Are these files publicly available?
Thanks.
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

msabourin
Posts: 3
Joined: Mon Aug 02, 2004 7:16 pm

Post 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
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post 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.
Post Reply