How to push (unbury) Browser Window to Top to Occlude other windows
i have c# code spawns process using process.start display contents of html file in default browser. there problem because new (1) window remains occluded (buried) underneath other windows. (2) new tab (inside browser) must top window. i tried bing/google searching not find hits "pop top" or "occluded window". here powershell script got powershell forum years ago , i've been using years display new web page. have translate c#? if so, have com handle instance of ie. what? how pop top? is there easier way translating powershell script c#? hope so! thanks siegried # find browser instance $browserset = (new-object -comobject shell.application).windows() | ? {$_.locationurl -like "http:*"} if($browserset -ne $null) { $browser=$browserset[0].application $browser.name $ieset = $browserset | ? {$_.name -like "windows internet explorer"} $ie = $ieset[0] }else{ # can create new instance of ie $ie...