vlkc Posted February 23, 2012 Posted February 23, 2012 Is it possible to use Delphi components as Twebbrowser or Tembeddedwb with or in uniGUI? Quote
docjones Posted February 24, 2012 Posted February 24, 2012 You can use another vcl componentes on unigui applications, but they not show on unigui client web interface, becouse then run on server, and not on web client. Only unigui components can show on web client interface. For load an url on unigui app, use uniframeurl. Quote
Administrators Farshad Mohajeri Posted February 24, 2012 Administrators Posted February 24, 2012 You can use another vcl componentes on unigui applications, but they not show on unigui client web interface, becouse then run on server, and not on web client. Only unigui components can show on web client interface. Correct. In addition it is not safe to use non-uniGUI components on a uniGUI Form. Quote
Administrators Farshad Mohajeri Posted February 24, 2012 Administrators Posted February 24, 2012 Is it possible to use Delphi components as Twebbrowser or Tembeddedwb with or in uniGUI? Not actually. Those components will not be visible in web mode. Quote
juniorcsa Posted June 5, 2015 Posted June 5, 2015 How to obtain the html code of a page open in UniURLFrame1.URL.example:// Loading the siteUniURLFrame1.URL:='http://www.nfe.fazen...do=XbSeqxE8pl8='// Getting html code site after being loadedUniMemo1.text: = UniURLFrame1.html.text;My problem is getting the code, someone can help me with this? Quote
Mohammed Nasman Posted June 6, 2015 Posted June 6, 2015 If you need to get the code only, then use idhttp from indy components as following: Unimemo1.lines.text := idhttp1.get('http://www.nfe.fazen...do=XbSeqxE8pl8='); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.