--3863945.1074047877500.JavaMail.quiq.tekken Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit
I dont know how to do it in ActiveX, but another way might be to load your page in a frameset and use the onLoad = focus() tag for the frameset. Once the page loads the window will focus. Here is a sample frameset (I'll attach as well in case the code gets messed up) You can probably make your frameset better than mine as frames code confuses me. <html> <head> <title>Loader</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <frameset onLoad=focus() rows="*,607" cols="*" framespacing="0" frameborder="NO" border="0"> <frame src="" name="mainFrame"> <frame src="http://www.google.com" name="bottomFrame" > </frameset> <noframes><body> </body></noframes> </html> --3863945.1074047877500.JavaMail.quiq.tekken Content-Type: text/html; name=frameloader.htm Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=frameloader.htm Content-Description: frameset loader <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>Loader</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <frameset onLoad=focus() rows="*,607" cols="*" framespacing="0" frameborder="NO" border="0"> <frame src="" name="mainFrame"> <frame src="http://www.google.com" name="bottomFrame" > </frameset> <noframes><body> </body></noframes> </html> --3863945.1074047877500.JavaMail.quiq.tekken--
