本文整理自网络,侵删。
设置焦点 (当Webbrowser处于编辑模式) TWebBrowser非常特殊,它从TWinControl继承来的SetFocus方法并不能使得它所包含的文档获得焦点//方法1procedure TForm1.ToolButton1Click(Sender: TObject);begin if Form1.WebBrowser1.Document <> nil then with WebBrowser1.Application as IOleobject do DoVerb(OLEIVERB_UIACTIVATE, nil, WebBrowser1, 0, Handle, GetClientRect());end; //方法2 Form1OnCreate事件无效if WebBrowser1.Document <> nil then IHTMLWindow2(IHTMLDocument2(WebBrowser1.Document).ParentWindow).Focus(); 相关阅读 >>
Delphi indy 组件包里的 idhttp 组件使用 get 方法下载文件限速的方法
Delphi xe6 使用intent启动活动并在android应用程序中获取返回值的示例
Delphi ini 文件操作记要: 使用 tmeminifile
更多相关阅读请进入《Delphi》频道 >>