I'm launching internet explorer from my windows form using processStart method and it works a treat, my problem is trying to hide the address bar when it launches
Is it possible to hide the address bar with processStart function?
I'm launching internet explorer from my windows form using processStart method and it works a treat, my problem is trying to hide the address bar when it launches
Is it possible to hide the address bar with processStart function?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ramesh MaruthiPosted Jul 2, 2014, 1:21 PM
Process.Start("IExplore.exe", "-nomerge http/:www.mysite.co.uk");
Note: Most probably is that you have IE already running as a process, so when you try to launch it again as a new process it looks that there are IE running already, tells it that user initiated a new window (so the initial IE will create a "new" window rather than a new one) and exit.
Please look at the below urls:
http://social.msdn.microsoft.com/Forums/vstudio/en-US/7daf200a-1f1c-4558-a9ee-7e118ae10dbd/how-to-open-internet-explorer-through-my-c-windows-application?forum=csharpgeneral
mike DelvottiPosted Jul 2, 2014, 12:59 PM
Hi, I'm using the bellow:
Process.Start("IExplore.exe", "http:www.mysite.co.uk");
Ramesh MaruthiPosted Jul 2, 2014, 12:51 PM
can you please paste your code here ?