How can I open up a NEW sized webpage from a vb.net application

trend

Centurion
Joined
Oct 12, 2004
Messages
171
I want to open up a IE window (or mozilla... whatever is system default) after the user does a specific action.

The catch is.. I don't want the webpage to redirect an existing webpage.. like what
Start("http://www.website")
Process.Start("www.domainName.com/pageName.aspx")
System.Diagnostics.Process.Start("http://whatever_page.com")

do..

but I want to be able to say the size of the window, placement, and that it is suppose to be a new webpage..

any ideas?

thanks!
 
do you intend to open a new Internet Explorer?
If so, try this :

---------------------------------------------------------------------------------

Private Sub Button1_Click(...)Handles Button1.Click
System.Diagnostics.Process.Start("IExplore.exe", "http://www.yahoo.com")
End Sub

--------------------------------------------------------------------------------
 
FYRe said:
do you intend to open a new Internet Explorer?
If so, try this :

---------------------------------------------------------------------------------

Private Sub Button1_Click(...)Handles Button1.Click
System.Diagnostics.Process.Start("IExplore.exe", "http://www.yahoo.com")
End Sub

--------------------------------------------------------------------------------

That works great! Is there anyway I can specify where the window is opened, and the size of it?


thanks!
 
Back
Top