'// This will close all IE browsers
Public Function closeAllBrowsers
Dim oDesc, x
'Create a description object
Set oDesc = Description.Create
oDesc( "micclass" ).Value = "Browser"
'Loop through the collection and close each browser
If Desktop.ChildObjects(oDesc).Count > 0 Then
For x = 0 to Desktop.ChildObjects(oDesc).Count - 1
Browser( "creationtime:=" & x ).Close
Next
End If
End Function
The Siddha Tradition of India
-
Siddhas are the saints in india who knew how to become immortal. They have
succeeded in their path and shared the knowledge to immortality to us in
sim...
sorry to say this but the code doesnt work
in the forloop you can say it as "Creationtime:=0" instead of "creationtime:="&x
Post a Comment