Hi
Rather than using an ImageEnMView, which will try to load all images, why not use a TIEBitmap (or TImageEnView). Iterate through the frames in turn (by settings:
cnt := IEGetFileFramesCount(...);
for idx := 0 to cnt - 1 do
begin
BMP.ParamsEnabled := True;
BMP.Params.Index := idx;
BMP.Read(...);
Assign to DB...
end;
Nigel
Xequte Software
www.imageen.com