dmitrybv 3 Posted 7 hours ago Good day. I have Embarcadero® RAD Studio 12 Version 29.0.53982.0329 Tell me how to work with the FMX.WebBrowser.TWebBrowser component correctly I drop TWebBrowser on the Form. The code is written procedure TMainForm.Button1Click(Sender: TObject); begin WebBrowser.Navigate('https://getbootstrap.com/docs/5.3/getting-started/introduction/'); end; and as a result I get the following picture: It looks like the browser is not processing the css and aside section of the page. Share this post Link to post
Vincent Gsell 11 Posted 4 hours ago Hi, On Windows, the component WebBrowser will use the underlying system rendering engine : By default, IE (!) - You can use a more advanced one, such as Edge, by setting the TWebBrowser's property "WindowsEngine" in component's inspector. Warning : All of that is "windows" (+Edge) only, and behave differently on other platform. If you have a recent Windows + Edge installed, and do not need an advanced use, it should be ok. If you need more advanced use with more option I invite you to go see the chromium engine. If you are only on Windows, you can try edge webview runtime, from the same author, wich is (a little) simpler to use. Share this post Link to post
Remy Lebeau 1510 Posted 56 minutes ago 3 hours ago, Vincent Gsell said: On Windows, the component WebBrowser will use the underlying system rendering engine : By default, IE (!) - You can use a more advanced one, such as Edge, by setting the TWebBrowser's property "WindowsEngine" in component's inspector. And if you run into problems with that, see: Share this post Link to post