About TidHttp, mshtml, ActiveX, COMObj in Firemonkey (Delphi)

I looked at the following interesting article: “Extract links from an HTML page using Delphi,” and I tested it with Firemonkey, and it is very useful, however this code uses objects from Mshtml, ActiveX and COMObj, so my questions are:

  • Do these objects make the above less cross-platform for the Firemonkey project? if so, how can I get the same functionality using resources designed for the Firemonkey platform?
  • How can I emulate a small webbrowser in firemonkey?

Thanks in advance.

Note. The ChromiumEmbedded object does not work for Firemonkey.

+1
source share
1 answer

MSHTML , ActiveX and ComObj are Windows specific and therefore not cross-platform.

FireMonkey does not yet have cross-platform HTML viewers (AFAIK (on the Embarcadero Delphi forums). TIdHTTP is available for Win32, Win64, and OSX; it is not yet available for iOS - see this post .

+3
source

Source: https://habr.com/ru/post/1393321/


All Articles