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...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...