[ reiser @ 02.01.2005. 02:15 ] @
Evo vec se tri sata zlopatim sa ovim komponentama.
Kako da ucitam neku slicicu iz TJvImageList u TJvImage ? Dodam slicice u TJvImageList i kad stavim JvImageList1.GetBitmap(0, JvImage1.Picture.Bitmap), canvas JvImage-a je potpuno beo... Isto se i desava ako koristim standardni ImageList.
[ Srki_82 @ 02.01.2005. 14:24 ] @
Probaj
Code:
procedure Button1Click(Sender: TObject);
var B: TBitmap;
begin
  B := TBitmap.Create;
  JvImageList1.GetBitmap(0, B);
  JvImage1.Picture.Bitmap := B;
  B.Free;
end;