Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Internet Explorer Application Control

Status
Not open for further replies.

gwilymb

MIS
Oct 31, 2006
3
GB
I am using this to display a kind of progress prompt while a script is running. All I want to know is how to get the title to not have " in it and how to make it the active window instead of opening in the background. Any ideas on how to do this?

set objExplorer = createobject("internetexplorer.application")
objExplorer.navigate2 "about:blank"
objExplorer.width = 250
objExplorer.height = 60
objExplorer.toolbar = False
objExplorer.menubar = False
objExplorer.statusbar = False
objExplorer.Resizable = False

objExplorer.document.write "<font color=blue>"
objExplorer.document.write "<MARQUEE WIDTH=100% BEHAVIOR=SCROLL>Searching through AD...</MARQUEE><br>"
objExplorer.document.title = "Please be patient...."
objExplorer.visible = True
 
That's great thanks, they work really well, but does anyone ahve any idea how to make the IE window active. At the moment it pops up in the background.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top