
06-29-2010
|
|
|
|
Re: how to use bat file to open serveral html files whht one instance of ie8
no, 2048 means use a new tab for the navigate instead of using the currently
active tab when you don't specify the 2nd argument
Note the vbscript will stop the moment it navigates to a file or site with
disallowed script/activeX even if you have the ignore all
On Error Resume Next
"Jeff Strickland" <crwlrjeff@yahoo.com> wrote in message
news:i0bnu5$sln$1@news.eternal-september.org...
>
> "GS" <gsmsnews.microsoft.comGS@msnews.Nomail.com> wrote in message
> news:OEpOyKwFLHA.5700@TK2MSFTNGP04.phx.gbl...
> > found out I can use vbs script.
> >
> >
> > Dim ie
> > set ie = CreateObject("InternetExplorer.Application") 'InternetExplorer
> >
> > ie.navigate(file1.html)
> > ie.navigate( file2.html, 2048)
> > ...
>
> Do you simply add 1024 to the 2048 to make new tabs for additional files?
>
> 2048 for a tab, 3072 for the next, 4096 for the next, and so on?
>
>
>
>
>
>
>
|