![]() |
Icon von der Delphi Exe ändern
Hallo,
wie ändert man das Icon der Exe, dass da nicht immer die dumme 7 steht? |
Re: Icon von der Delphi Exe ändern
Bei Projekt -> Optionen
|
Re: Icon von der Delphi Exe ändern
Hi,
Dem gesamten Projekt gibt man im Menü "Projekt", Befehl "Optionen", Register "Icon" ein individuelles Icon für die Exe-Datei. |
Re: Icon von der Delphi Exe ändern
danke schön :)
|
Re: Icon von der Delphi Exe ändern
wenn das nicht tun sollte :
eine Datei z.B. mainicon.rc erstellenin der steht
Delphi-Quellcode:
und dann in der Project-unit
MAINICON ICON irgendein.ico
Delphi-Quellcode:
das
program Project1;
uses Forms, Unit1 in 'Unit1.pas' {Form1}; {$R *.res} begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end.
Delphi-Quellcode:
durch
{$R *.res}
Delphi-Quellcode:
ersetzen.
{$R 'Project1.res' 'mainicon.rc'}
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 09:35 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz