There is no specific method to set the image with ImageEnView so just assign its bitmap:
procedure TForm1.Button1Click(Sender: TObject);
var
iIndex: integer;
begin
iIndex := StrToInt(Edit1.Text);
ImageEnView1.Bitmap.Assign(JvImageList1.Items[iIndex].Bitmap);
ImageEnView1.Update;
end;
or in your case:
ImageEnView1.Bitmap.Assign(JvImageList1.Items[0].Bitmap);
William Miller
Adirondack Software & Graphics
Email: w2m@frontiernet.net
EBook: http://www.imageen.com/ebook/
Apprehend: http://www.frontiernet.net/~w2m/index.html