var b = coreObj.FindBrowser(Search conditions);
TITLE
condition on the title of the browser windowURL
condition on the url of the web pageTID
condition on the thread id of the Internet Explorer windowPID
condition on the process id of the Internet Explorer instanceAPP
the name of the application hosting the Internet Explorer web controlvar coreObj = new ActiveXObject("Twebst.Core");
var browser = coreObj.FindBrowser("URL=http://www.codecentrix.com/");
// If the browser is found, bring the brower window in foreground.
if (browser != null)
{
browser.ShowBrowserWindow(browser.SHOW_IN_FOREGROUND);
}