Is it possible, if so, how to pass in command line arguments to CreateObject
For instance, with Internet Explorer, there are switches like -new to get IE to start with as a new instance and session. How could I modify the following code to do just that
Dim objIE
objIE = CreateObject("InternetExplorer.Application"
What I want to do is use VBScript to create a new IE window with a NEW session, without destroying the existing window and session.
For instance, with Internet Explorer, there are switches like -new to get IE to start with as a new instance and session. How could I modify the following code to do just that
Dim objIE
objIE = CreateObject("InternetExplorer.Application"
What I want to do is use VBScript to create a new IE window with a NEW session, without destroying the existing window and session.