06-11-2008, 09:08 PM
Use the following code inorder solve your problem.
it will give you all the browsers titles one by one opened in the desktop
Regards
Ramu
it will give you all the browsers titles one by one opened in the desktop
Code:
Set Titles=description.Create()
Titles("micclass").value="Browser"
Set Brows=Desktop.childobjects(Titles)
NoOfBrowsers=Brows.Count
for i=0 to NoOfBrowsers-1
TitleofBrowser=Browser("creationtime:="&i).GetRoProperty("title")
msgbox TitleOfBrowser
next
Regards
Ramu