trend Posted August 11, 2005 Posted August 11, 2005 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! Quote
FYRe Posted August 11, 2005 Posted August 11, 2005 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 -------------------------------------------------------------------------------- Quote sOMEONE'S gONNA dO iT, wHY nOT yOU ?
trend Posted August 11, 2005 Author Posted August 11, 2005 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! Quote
IngisKahn Posted August 11, 2005 Posted August 11, 2005 A quick brainfart: just create a custom html doc that opens your page with the specified options and open that instead. Quote "Who is John Galt?"
neodammer Posted August 12, 2005 Posted August 12, 2005 Javascript on the page would be easiest I guess its not very hard and you can find free code everywhere online these days. Quote Enzin Research and Development
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.