Einzelnen Beitrag anzeigen

taktaky
(Gast)

n/a Beiträge
 
#4

Re: Resourcendatei wird nicht erzeugt

  Alt 14. Okt 2007, 11:07
Verschiebst Du die Zeile in die richtige Stelle!
Delphi-Quellcode:
program tpm;

//{$R 'jsl.res' 'jsl.rc'}



uses
  Forms,
  tpm_main in 'tpm_main.pas{FormTpmMain},
  at_datamodule in 'at_datamodule.pas{DM: TDataModule};

//....

implementation // !!!

{$R *.res}
{$R 'jsl.res' 'jsl.rc'}  // da soll sein

begin
  Application.Initialize;
  Application.Title := 'TPM';
  Application.CreateForm(TDM, DM);
  Application.CreateForm(TFormTpmMain, FormTpmMain);
  Application.Run;
end.
  Mit Zitat antworten Zitat