hackman2007 wrote:
furball146 wrote:
What are you trying to accomplish?
My initial thought is something that'll download the site and the cache it in a local directory, sort of like the old active desktop subscription, but I'm kind of puzzled as to what you're trying to do.
I have about 40 domains I need to actively monitor and fix.
I was just thinking it would be fine to have them all be able to open at once very quickly (yeah I could open 40 tabs, but damn that's a lot of tabs).
Thanks for the responses.
If you literally want to open 40 tabs (websites) for example in MSIE it can be done real easily using a script as I mentioned earlier.
Try something like this. Copy and paste the following code into Notepad:
Code:
set ie = createobject("internetexplorer.application")
ie.navigate "http://www.canon.com"
set ie = createobject("internetexplorer.application")
ie.navigate "http://www.bearblain.com"
set ie = createobject("internetexplorer.application")
ie.navigate "http://www.yahoo.com"
set ie = createobject("internetexplorer.application")
ie.navigate "http://www.hp.com"
set ie = createobject("internetexplorer.application")
ie.navigate "http://www.google.com"
Click File and Save As and name the file Open Sites.vbs Just be sure to add the .vbs extension. Save the file to your desktop. Double click the file to run it. The example I have 5 sites listed. I have no clue how much 40 will tax the system but looking at the code you can see there isn't much to it.
Ron