Hello fab,
thanks for the tipp "aborting".
But the problem isn't solved.
It seems, that ImageENView.LoadFromURL has problems with new picture if there was an aborting before.
So, still I have to repeat the LoadFromURL to get picture like
begin
ImageENView.Clear;
ImageENView.ResetState;
ImageEnView.IO.LoadFromURL('http://' + main.Host + '/OLS/Images/' + Edit.Text + '.jpg');
if ImageENView.IO.aborting then exit;
ImageEnView.IO.LoadFromURL('http://' + main.Host + '/OLS/Images/' + Edit.Text + '.jpg');
ImageEnView.Proc.Resample(ImageEnView.Width, ImageENView.Height, rfLanczos3, True);
end;
This need to repeat the LoadFromURL-command appeared in one of the 4.xx Version.
best regards
Hans