Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

VBS script to open IE8 with specific websites in multiple TABS ?

1,242 views
Skip to first unread message

pru...@equilter.com

unread,
Mar 20, 2009, 1:31:03 PM3/20/09
to
I'm wondering if there's a way to write a VBS script that will launch
IE8 complete with specific websites in multiple tabs?

Somehow I need to add TAB information:

set ie = createobject("internetexplorer.application")
ie.top = 0
ie.left = 70
ie.width = 784
ie.height = 996
ie.navigate "http://yahoo.com"
ie.visible = true

Any ideas?

aruns...@gmail.com

unread,
Mar 26, 2013, 5:16:19 AM3/26/13
to
Use it like -

Set ieobj = CreateObject("InternetExplorer.Application")
ieobj.Visible = True
ieobj.Navigate2 "http://www.facebook.com"
ieobj.Navigate2 "http://www.plus.google.com", 2048

Details here -http://www.skipser.com/167
0 new messages