![]() |
Windows Icon
Hallo Leute,
ich bin immer noch mit dem Umzug von D 2005 zu Delphi Berlin beschäftigt und erlebe Überrascungen. Ich will eine Windows Ikone - hier das weiße ? auf blauem Grund - auf ein eigenes Fenster plazieren. Ich gehe so vor:
Delphi-Quellcode:
Das klappt, wenn ich das Fenster statisch anlege. Falls ich es dynamisch anlege, so:
procedure TForm2.FormPaint(Sender: TObject);
var Icon: TIcon; begin Icon:=TIcon.Create; Icon.Handle:=LoadIcon(0,IDI_QUESTION); if Icon.Handle > 0 then Form2.Canvas.Draw(25,35,Icon); //<------ Icon.Free end;
Delphi-Quellcode:
dann kracht es in der markierten Zeile: Zugriffsverletzung. Ich verstehe, das Fenster ist für Paint (noch) nicht bereit. Ich habe es mit OldOrderCreate=true versucht, bringt aber nichts. Aber warum hat es mit Delphi 2005 funktioniert!?
with TForm2.Create(Form1) do
try aw:=ShowModal; finally free end; Gruß Willie.. |
AW: Windows Icon
Ich behaupte mal, es liegt am
Delphi-Quellcode:
.
with
Sherlock |
AW: Windows Icon
Delphi-Quellcode:
So sollte es theoretisch funktionieren.
procedure TForm2.FormPaint(Sender: TObject);
var Icon: TIcon; begin Icon:=TIcon.Create; Icon.Handle:=LoadIcon(0,IDI_QUESTION); // if Icon.Handle > 0 then Form2.Canvas.Draw(25,35,Icon); //<------ if Icon.Handle > 0 then Canvas.Draw(25,35,Icon); //<------ Icon.Free end; |
AW: Windows Icon
Hallo Jasoul, das ist die Lösung!
Hallo Sherlock, Zitat:
Tschüss und danke Willie. |
AW: Windows Icon
Zitat:
Abgesehn davon, dass man innerhalb der eigenen Klasse "niemals" auf diese Variable zugreifen sollte. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:49 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