'// 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
Thirukkural - Thathuva, Yoga, Gnayna Urai || திருக்குறள் - தத்துவ யோக ஞான
உரை
-
*திருக்குறள் - தத்துவ, யோக, ஞான உரை *
*Thirukkural - Thathuva, Yoga, Gnayna Urai*
This book is written with 40 years of research on Thirukkural and a...
1 comments:
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