Zitat von
p80286:
Hallo Dominik,
teste einmal wb.Busy auf true. Ich hab bisher noch nicht heraus bekommen, wann dieses READYSTATE_COMPLETE wirklich stimmt.
Gruß
K-H
Sehr schön, jetzt funktionierts
Delphi-Quellcode:
procedure WaitForBrowser(WB: TWebbrowser);
begin
while (WB.Busy)
and not (Application.Terminated) do
begin
Application.ProcessMessages;
Sleep(100);
end;
end;
Vielen Dank p80286, auf die
DP ist immer Verlass