Zitat von
STS301:
so sieht die
DPR aus
Delphi-Quellcode:
uses
Forms,
Hangman_u in 'Hangman_u.pas' {FHangman},
Start_u in 'Start_u.pas' {FStart};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Hangman';
Application.CreateForm(TFStart, FStart);
Application.Run;
end.
Zuerst muss das Hauptprogramm erzeugt werden. Am besten Du trägst es unter Projektoptionen als "automatisch erzeugt" ein, dann wird es in der
dpr schon erzeugt.
Grüße, Messie