Getting errors creating ChromiumOSR programmatically
I'm trying to create ChromiumOSR programmatically but I keep getting an error (access violation). Here is sample code that causes the problem: var pChromiumOSR: TChromiumOSR; begin pChromiumOSR := TChromiumOSR.Create(Self); pChromiumOSR.OnLoadEnd := pChromiumOSRLoadEnd; pChromiumOSR.Browser.MainFrame.LoadUrl('www.google.com'); end; The problem is that pChromiumOSR.Browser.MainFrame is always nil. If I do pChromiumOSR.load('www.google.com'); I don't get any errors but it doesn't fire the onLoadend. Can anyone give me any suggestions on what I might be doing wrong? I'm using Delphi XE2 but not