Unabhängig davon ob ich die X2GraphicList oder die Pngimagelist verwende, bei
Code:
Image1.Picture.Graphic := PngImageCollection1.Items.Items[Tag].PngImage;
der zeile meldet er mir das pngimage als undefinierten bezeichner, obwohl ich diese 4 in der uses drin hab..: X2CLGraphicList, PngExtraEx,pngimage,uPngImageList; muss ich pngimage noch irgednwie anders klassifizieren? hier mal der ganze code...lach. lustig das man an so "kleinigkeiten" so festhängen kann ;D
hab nen button, nen Timage, ne PngImageList und eine TpngImageCollection auf der form.
Code:
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, ImgList, X2CLGraphicList, PngExtraEx,pngimage,
uPngImageList;
type
TForm1 = class(TForm)
Image1: TImage;
Button1: TButton;
PngImageList1: TPngImageList;
collection: TPngImageCollection;
procedure Button1Click(Sender: TObject);
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
Image1.Picture.Graphic := collection.items.Items[0].pngimage;
end;
end.
danke für die geduld...wiedermal
robin