Hallo
Mir sind zwei Möglichkeiten bekannt.
1.
Delphi-Quellcode:
uses
ActiveX;
with WebBrowser1
do
if Document <>
nil then
with Application
as IOleobject
do
DoVerb(OLEIVERB_UIACTIVATE,
nil, WebBrowser1, 0,
Handle,
GetClientRect);
end;
{2}
Delphi-Quellcode:
uses
MSHTML;
begin
if WebBrowser1.Document <> nil then
(Webbrowser1.Document as IHTMLDocument2).ParentWindow.Focus;
end;
PS: Viele Antworten auf Fragen findest du schon via
DP Suche oder via Google:
Focus Webbrowser