Due to the recently added “feature” in IE8, where new windows are automatically associated with a single session , some of our code behaves erratically.
This is because a separate application launched a new IE window when it was activated, and as soon as the user is finished, close the window. This worked fine in IE7 because the session information in the windows remained separate. However, in IE8, since the session is split between IE windows, we find that a pop up application would damage the session in the first application.
I read about the nomerge switch, so this is a workaround, but I was wondering if there is a way to work with the solution in the "CreateObject" vbscript; i.e:
Dim ieWin As Object Set ieWin = CreateObject("InternetExplorer.Application")
Is there a way to send parameters when calling the CreateObject function?
Robert Ngetich
source share