Einzelnen Beitrag anzeigen

Benutzerbild von himitsu
himitsu

Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.184 Beiträge
 
Delphi 12 Athens
 
#6

Re: Name der EXE-Datei ändern

  Alt 5. Mär 2004, 14:50
Nicht ganz sauber, geht aber auch.

Zwei DPR's

Code:
[color=blue]{Projectbla.dpr}[/color]
program [color=red]Projectbla[/color];

uses
  Forms,
  Unit1 in 'Unit1.pas' {Form1};

[color=red]{$R *.res}[/color]

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
Code:
[color=blue]{Projectbla_Debug.dpr - 'ne Kopie der anderen DPR}[/color]
program [color=red]Projectbla_Debug[/color];

uses
  Forms,
  Unit1 in 'Unit1.pas' {Form1};

[color=red]{$R Projectbla.res}[/color]

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
Angehängte Dateien
Dateityp: zip 2.zip (1,6 KB, 0x aufgerufen)
$2B or not $2B
  Mit Zitat antworten Zitat