I use this code to load a TPicture in an TImageEnView:
ImageEnView1.IEBitmap.CopyFromTBitmap(APicture.Bitmap);
ImageEnView1.Update;
Isn't there a way to DIRECTLY load a TPicture in TImageEnView? (Without the detour over TPicture.Bitmap).
The reason is: My particular TPicture is a perfectly valid TPicture and can be used successfully as TPicture. But as soon as I try to access its BITMAP property I get an Access Violation! (Doesn't a TPicture automatically contain a Bitmap?)