Error on LoadURL with TChromium

我的未来我决定 提交于 2019-11-28 11:38:56

I still haven't found a resolution but I found the following work around

procedure TForm1.lblWebsiteClick(Sender: TObject);
var MainFrame : ICefFrame;
begin
  MainFrame := Chromium2.Browser.GetMainFrame;
  MainFrame.LoadUrl('http://www.cookingisfun.ie');
end;

The problem is that mainframe only loads after the page has loaded.

For one thing, you need to do:

if Assigned(Chromium2.Browser.MainFrame)
    then  Chromium2.Browser.MainFrame...

However, that is not the preferred way to navigate, but instead you should do:

Chromium1.Load( theUrl );

If you still want to use MainFrame, do it in OnLoadEnd event.

tomo7

Had similar problems and after quite a few hours located the problem:

  1. If TChromium is on the main form of the application then ok.

  2. If TChromium is not on main form (or on a frame) then:

    1. Open cef.inc and remove the dot to define:

      {.$DEFINE CEF_MULTI_THREADED_MESSAGE_LOOP} 
      
    2. Remove DefaultURL value so it is an empty string.

I googled CEF_MULTI_THREADED_MESSAGE_LOOP but it didn't come up with much at all.

Lastly, had resizing/refreshing problems (even with alignment set to alClient). Short term fix is within
crmLoadEnd event do something like:

     if crm.Height < panclient.Height then
        crm.Height := panclient.Height;

Do you have alll the required DLL in the folder where your application is built?

You need: libcef.dll, icudt.dll, ...

Check this thread on their support group.


When you build/run the demos, they are built in this subfolder (*DCC_ExeOutput*): DCEF\bin\ which is why it works with them...

Had this problem as well. It seems the MainFrame is first created when the frame/window gets visible. But there is an easy way around it. Just call .Load('about:blank') directly on your TChromium object. This will initialize the missing frame earlier.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!