Delphi-PRAXiS
Seite 2 von 2     12   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   GUI-Design mit VCL / FireMonkey / Common Controls (https://www.delphipraxis.net/18-gui-design-mit-vcl-firemonkey-common-controls/)
-   -   Delphi Bild aus ImageList in Statusbar (https://www.delphipraxis.net/15572-bild-aus-imagelist-statusbar.html)

teebee 27. Okt 2005 19:50

Re: Bild aus ImageList in Statusbar
 
Vermutlich hast Du noch keine TIcon-Instanz erzeugt:
Delphi-Quellcode:
Var SIcon: TIcon;
begin
  SIcon := TIcon.Create;
  Try
   ImageList1.GetIcon(0, SIcon);
   SendMessage(StatusBar1.Handle, SB_SETICON, 0, SIcon.Handle);
  Finally
   SIcon.Free;
  End;
end;
Gruß, teebee

ManuMF 28. Okt 2005 13:39

Re: Bild aus ImageList in Statusbar
 
Danke, das war es!

:wall: Ich bin manchmal einfach zu vergesslich...


Alle Zeitangaben in WEZ +1. Es ist jetzt 16:39 Uhr.
Seite 2 von 2     12   

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz