I have duplicated your findings, except the TImageEnVect is properly aligned to the client panel when maximized. The "white" rectangle in the center is the bitmap not the previous form dimensions. You can correct the problem with this:
procedure TForm1.FormCreate(Sender: TObject);
begin
ImageEnVect1.Proc.Resample(ImageEnVect1.ClientWidth, ImageEnVect1.ClientHeight);
ImageEnVect1.IEBitmap.Fill(clRed);
ImageEnVect1.Update;
end;
or
procedure TForm1.FormCreate(Sender: TObject);
begin
ImageEnVect1.Clear;
ImageEnVect1.Update;
end;
Bill Miller
Adirondack Software & Graphics
Email: w2m@hughes.net
EBook: http://www.imageen.com/ebook/
Custom Commercial ImageEn Development