Hi, The one and simple way to resolve your issue is to use Descriptive Programing, please go through Descriptive programing in the Documentation and you will come to know...I have worked only with Web Environment and I used the statements like ...Browser("name:=Customer Support").Page("Title:=Customer Support Page").Weblist("name:=....... and if you wanna use an existing(already opened) browser, just do like this...
If (Browser("name:=Customer Support").Exist) Then
Browser("name:=Customer Support").Activate
Browser("name:=Customer Support").Close : Rem I used close just like that..
else
Reporter.ReportEvent micWarning,"Browser(Customer Support)","Not Displayed"
End If