Thread: IE Window Name
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
michelxld[_32_] michelxld[_32_] is offline
external usenet poster
 
Posts: 1
Default IE Window Name


Hello

you may try

Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True
IE.navigate "about:blank"
Do Until IE.readyState = READYSTATE_COMPLETE
DoEvents
Loop
IE.document.Title = "new name"


Regards ,
michel


--
michelxld
------------------------------------------------------------------------
michelxld's Profile: http://www.excelforum.com/member.php...o&userid=17367
View this thread: http://www.excelforum.com/showthread...hreadid=474556