Forum Discussion
AlexeyKolosov
Staff
15 years agoHi Anand,
You can use the IEFrame method to address child windows of the Internet Explorer process. The first opened window has the 0 index, the second - 1, etc. To switch back to the previous window, call the Activate method of the previous frame:
Call Sys.Process ("iexplore").IEFrame(0).Activate
To close the opened window, call the Close method of the frame that corresponds to the opened window:
Call Sys.Process("iexplore").IEFrame(1).Close