Jump to content

Web browser on Delphi for uniGUI ?


Andrey Volkov

Recommended Posts

Hi, All!

Thank's Farshad for uniGUI !!!

 

Whether prompt, please, probably to make own browser of components to  

Delphi or to use existing decisions?

 

There is a wish to start application and to get access to the necessary uniGUI to application without url input.

 

And if in case of start to transfer to uniGUI application the necessary parameters, it is possible to solve different problems!!!

 

There is a strong wish to learn YOUR judgement!

 

Link to comment
Share on other sites

Hello,

You can  use 

TWebBrowser component

or Delphi chromium (https://code.google.com/p/delphichromiumembedded)

Or  call external browser by 

 

if ExtractFileExt(GetModuleName(HInstance))='.exe' then
ShellExecute(Application.Handle,
               PChar('open'),
               PChar('http://127.0.0.1:'+IntToStr(port)),
               Nil,
               Nil,
               SW_SHOW);
 
Regards.
Успехов.
Link to comment
Share on other sites

  • 1 year later...
  • 2 years later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...