Hello! i am new to vb programming and have started coding my own browser.I would like to know the coding for opening of multiple instances of the browser( as in IE "ctrl-N").thanks:-)
Printable View
Hello! i am new to vb programming and have started coding my own browser.I would like to know the coding for opening of multiple instances of the browser( as in IE "ctrl-N").thanks:-)
Here's a couple of links to help you out:
HOWTO: Use the WebBrowser Control NewWindow2 Event
http://support.microsoft.com/support.../Q184/8/76.ASP
Reusing Browser Technology
http://msdn.microsoft.com/workshop/b...RefList_VB.asp
Good link on using the WebBrowser Control
http://www.vbcity.com/page.asp?f=boo...bweb&p=chapter
The first link explains how to open multiple instances of your WebBrowser with the NewWindow2 Event.
Thanks Bloodeye!
I tried- shell "nameofbrowser.exe",1- and it worked except it always opens maximized.I will try your suggested links.
bongski;)