G
Guest
I have the following code:
Dim BrowserLauncher As New ProcessStartInfo
BrowserLauncher.FileName = URL BrowserLauncher.CreateNoWindow =
False
BrowserLauncher.UseShellExecute = True
BrowserLauncher.WindowStyle = ProcessWindowStyle.Maximized
Process.Start(BrowserLauncher)
Each time I run this, IE does NOT open a new browser window but instead
uses a current browser I already have open.
Anyone know away around this? I'm coding from VB.NET windows form
trying to launch a web page.
Note: If I don't have any browser open at all, a new browser IS
launched.
Any help would be appreciated.
7078895
Dim BrowserLauncher As New ProcessStartInfo
BrowserLauncher.FileName = URL BrowserLauncher.CreateNoWindow =
False
BrowserLauncher.UseShellExecute = True
BrowserLauncher.WindowStyle = ProcessWindowStyle.Maximized
Process.Start(BrowserLauncher)
Each time I run this, IE does NOT open a new browser window but instead
uses a current browser I already have open.
Anyone know away around this? I'm coding from VB.NET windows form
trying to launch a web page.
Note: If I don't have any browser open at all, a new browser IS
launched.
Any help would be appreciated.
7078895