Where can I find more information about properties
and methods available on "InternetExplorer.Application" object? If I
want to use "InternetExplorer.Application" to the fullest, which book or
web reference would you suggest?
Another quick question: how to attach to *EXISTING*
(so the script does not create its own InternetExplorer.Application
object) instance of Internet Explorer and control it via script?

Drazen

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Re: InternetExplorer.Application methods and properties reference by Joe

Joe
Sat Aug 14 04:57:35 CDT 2004


"Drazen Petrek" <drazen_petrek@yahoo.com> wrote in message
news:%23P5wJGegEHA.3728@TK2MSFTNGP10.phx.gbl...
> Where can I find more information about properties
> and methods available on "InternetExplorer.Application" object? If I
> want to use "InternetExplorer.Application" to the fullest, which book or
> web reference would you suggest?
> Another quick question: how to attach to *EXISTING*
> (so the script does not create its own InternetExplorer.Application
> object) instance of Internet Explorer and control it via script?
>
> Drazen
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!

I use whe MSDN reference, confusingly it's for IWebBrowser2...

http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/reference/ifaces/iwebbrowser2/iwebbrowser2.asp

--

Joe (MVP)



Re: InternetExplorer.Application methods and properties reference by mayayana

mayayana
Sat Aug 14 10:49:55 CDT 2004

These are all valid from IE v. 4:

Properties

AddressBar, Application, Busy, Container, Document, FullName, FullScreen,
Height, HWND, Left, LocationName, LocationURL, MenuBar, Name, Offline,
Parent, Path, ReadyState, RegisterAsBrowser, RegisterAsDropTarget,
Resizable, Silent, StatusBar, StatusText, TheaterMode, ToolBar, Top,
TopLevelContainer, Type, Visible, Width


Methods

ClientToWindow, ExecWB, GetProperty, GoBack, GoForward, GoHome, GoSearch,
Navigate, Navigate2, PutProperty, QueryStatusWB, Quit, Refresh, Refresh2,
ShowBrowserBar, Stop


Events

BeforeNavigate2, CommandStateChange, DocumentComplete, DownloadBegin,
DownloadComplete, NavigateComplete2, NewWindow2, OnFullScreen, OnMenuBar,
OnQuit, OnStatusBar, OnTheaterMode, OnToolBar, OnVisible, ProgressChange,
PropertyChange, StatusTextChange, TitleChange


You probably won't need to use many of those. To find out
about the ones you don't know I think the only option is
MSDN or sample scripts. MSDN is available on CD with MS
programming software, which allows it to be loaded locally
like one giant help file. I don't know what it costs to order MSDN
CDs alone.
MSDN online is unfortunately slow to load and rather spread out.
You might just have to set aside a few hours to download all the
IE pages if you want to keep a good, quick reference at hand.

What you will probably need much more is the Document
Object Model reference, which is much bigger. There's
cursory coverage in VBScript Programmer's Reference
(Wrox publ.) but it really just amounts to a listing - if you
don't already know how to use the properties and methods
it won't do much good. So again, you probably have to settle
for sample DHTML code and MSDN online.

--
--
Drazen Petrek <drazen_petrek@yahoo.com> wrote in message
news:#P5wJGegEHA.3728@TK2MSFTNGP10.phx.gbl...
> Where can I find more information about properties
> and methods available on "InternetExplorer.Application" object? If I
> want to use "InternetExplorer.Application" to the fullest, which book or
> web reference would you suggest?
> Another quick question: how to attach to *EXISTING*
> (so the script does not create its own InternetExplorer.Application
> object) instance of Internet Explorer and control it via script?
>
> Drazen
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!