I've got Microsoft Outlook, Internet Explorer, Mozilla Firefox, and a
couple of open console windows on my desktop. I run the following
code:
set oShApp = CreateObject("Shell.Application")
wscript.echo "starting..."
for each oWin in oShApp.windows
set oDoc = oWin.document
wscript.echo oDoc.title
next
wscript.echo "done."
It returns only the Internet Explorer window title. How should I
modify it to return the titles of all the windows? Thanks in advance
to all who respond.
Leslie