Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Multimedia (https://www.delphipraxis.net/16-multimedia/)
-   -   Delphi image.picture := imagelist.geticon(0); (https://www.delphipraxis.net/16529-image-picture-%3D-imagelist-geticon-0-%3B.html)

agm65 18. Feb 2004 16:00


image.picture := imagelist.geticon(0);
 
hallo leute ....
vielleicht erkennt ihr am code wo mein problem liegt...also
ich möchte ein icon aus meiner image list in ein bild einladen ...

ich dachte wie folgt
image.picture := imagelist.geticon(0);

aber das geht nicht....habe schon im forum gesucht aber nichts gefunden ...


danke euch allen !

Matze 18. Feb 2004 16:01

Re: ???? image.picture := imagelist.geticon(0); ??????
 
Bitte entferne erstmal die ganzen Fragezeichen aus dem Titel, so antwortet keiner gern.
Delphitags schaden auch nicht. ;)

Matze 18. Feb 2004 16:14

Re: image.picture := imagelist.geticon(0);
 
Probier's mal so:

Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var MyIcon: TIcon;
begin
  ImageList.GetIcon(0, MyIcon);
  Image1.Canvas.Draw(0, 0, MyIcon);
end;
keine Ahnung, ob's geht.

Gandalfus 18. Feb 2004 16:29

Re: image.picture := imagelist.geticon(0);
 
Delphi-Quellcode:
image.picture.assign(imagelist.geticon(0));

agm65 18. Feb 2004 16:33

Re: image.picture := imagelist.geticon(0);
 
bei der unteren lösung gibts den fehler nicht genügend wirkliche paramater !
beim oberen sagt er mir was von: ich soll das nur machen wenn ich die bilder belegt hätte, habe ich aber index 0-5

Matze 18. Feb 2004 16:38

Re: image.picture := imagelist.geticon(0);
 
Vielleicht so:

Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var MyIcon: TIcon;
begin
  ImageList.GetIcon(0, MyIcon);
  Image1.picture.assign(MyIcon);
end;

agm65 18. Feb 2004 16:42

Re: image.picture := imagelist.geticon(0);
 
Code:
imglsticqstatus.GetIcon(0, MyIcon);
imgicqstatus.picture.icon := (MyIcon);
geht leider auch nicht .... das ist bei visual basic alles viel besser geregelt,
mit den icons und pictures....

Matze 18. Feb 2004 16:46

Re: image.picture := imagelist.geticon(0);
 
Geht mein letztes Beispiel auch nicht?

agm65 18. Feb 2004 16:51

Re: image.picture := imagelist.geticon(0);
 
nein geht auch nicht ...das ist echt übel :)

hätte nicht gedacht das das in delphi so schwer ist ...dann kann ichs mir jetzt auch erstmal abschmicken ne icon in eine statusbar zu laden ....

ich könnte auch 6 einzelne bilder machen und dann image.pic = image2.pic
habe ich mal in vb gemacht um ocx zu vermeiden ...ist aber lame in delphi da keine ocx files gebraucht werden :) !

Gandalfus 18. Feb 2004 16:51

Re: image.picture := imagelist.geticon(0);
 
Delphi-Quellcode:
Image1.picture.bitmap.assign(MyIcon);

agm65 18. Feb 2004 17:00

Re: image.picture := imagelist.geticon(0);
 
jetzt sagt er mir was on wegen combo box könne picture nicht zugewiesen werden ....kann es damit zusammen hängen das ich versuche das aus nem combo change raus zu starten ?

was allerdings föllig unlogisch wäre

*****
jetzt wechselt er aber es ist kein bild zu sehen ich dreh ab
*****

das ganze als bitmap geht auch nicht :( :wall:

Gandalfus 18. Feb 2004 17:54

Re: image.picture := imagelist.geticon(0);
 
beschreibe doch mal allgemein was du machen willst.

fkerber 18. Feb 2004 18:00

Re: image.picture := imagelist.geticon(0);
 
Hi!

... und häng vielleicht mal etwas Code an.

Ciao fkerber

agm65 18. Feb 2004 18:16

Re: image.picture := imagelist.geticon(0);
 
okay also ich hab die imagelist in der sind 6 icons gespeichert.
jetzt möchte ich das an einer bestimmten stelle immer zu einer bestimmten funktion sich das icon ändert ! 0-5 ...

also dachte ich es wäre möglich es einfach in ein picturebox reinzubasteln wie in vb

thx all

phXql 4. Apr 2004 13:14

Re: image.picture := imagelist.geticon(0);
 
mach ein image, und dann

Delphi-Quellcode:
Imagelist1.GetIcon(0,Image1.Picture.Icon);
bei mir gehts...


Alle Zeitangaben in WEZ +1. Es ist jetzt 04:54 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