Quoting Dennis Chuah <[EMAIL PROTECTED]>:
> IMHO, yes, looks like a Delphi bug to me. At the very least the compiler
> should issue an error. If can spare a few minutes, why not compile a bland
> app with the 2 resource files and mail that bug to Borland.
Well I just submitted it as a bug via
> > {$R *.DFM}
> > {$R SFM.RES}
>
> Just did a bit of help reading on {$R} and then noticed they
> mentioned both
> resources in one {$R} directive, so I changed my .pas to read:
>
> {$R *.DFM SFM.RES}
>
> And it all works fine. I guess the something was getting
> confused. Would this
> b
Mark,
> I deleted the .res file and reloaded Delphi and it recreated
> it (strangely
> thou, it kept the version resource details which surprised
> me, does it store
> this somewhere else?)
The one in the RES file is only a copy of the one in the DOF file.
Regards,
Dennis.
--
Quoting Mark Derricutt <[EMAIL PROTECTED]>:
> {$R *.DFM}
> {$R SFM.RES}
Just did a bit of help reading on {$R} and then noticed they mentioned both
resources in one {$R} directive, so I changed my .pas to read:
{$R *.DFM SFM.RES}
And it all works fine. I guess the something was getting
Quoting Dennis Chuah <[EMAIL PROTECTED]>:
> effect. I wonder, if you can delete the RES file that Delphi generates for
> the project (this should have only 2 resources, the icon and versioninfo).
> Reselect the icon into the project and recompile.
I deleted the .res file and reloaded Delphi and