How to open webpage in HIDDEN default browser? DELPHI
Posted
by obma
on Stack Overflow
See other posts from Stack Overflow
or by obma
Published on 2010-05-14T13:48:45Z
Indexed on
2010/05/14
13:54 UTC
Read the original article
Hit count: 234
I have been trying to open a hidden default browser from delphi but coulnd't.
I tried
ShellExecute(self.WindowHandle,'open','www.google.com',nil,nil, SW_HIDE);
and I get my chrome browser open but not hidden, and it opens a tab not a new window, also tried with TStartupInfo with the same results. Is there another way to achieve this?
© Stack Overflow or respective owner