Load on 100%
Posted: Wed Aug 28, 2019 11:00 am
Main frame is not loaded, but progress in Chromium1LoadingProgressChange shows 100%.
prn scr: http://prntscr.com/oylk12
prn scr: http://prntscr.com/oylk12
Code: Select all
procedure TForm1.Chromium1LoadingProgressChange(Sender: TObject;
const browser: ICefBrowser; const progress: Double);
begin
StatusBar1.Panels[0].Text := 'Loading... ' + FloatToStrF(progress * 100, ffFixed, 4, 1) + '%';
end;