Registriert seit: 29. Mai 2002
37.621 Beiträge
Delphi 2006 Professional
|
Re: Eigenes Icon für Delphi-Projekt
10. Jul 2007, 01:19
Hast du vieleicht in der Projektdatei die res-Zeile gelöcht?
Delphi-Quellcode:
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res} // <-
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Michael Ein Teil meines Codes würde euch verunsichern.
|