Re: Want to Eary Bind Instead of Late Bind Object an IE Object
- From: "*** Sutton" <rsutton43@xxxxxxxxxxx>
- Date: Tue, 23 May 2006 11:32:32 -0400
Cor,
Thanks for the insight. I'll give it a try...
***
"Cor Ligthert [MVP]" <notmyfirstname@xxxxxxxxx> wrote in message
news:OjRd%23RnfGHA.3364@xxxxxxxxxxxxxxxxxxxxxxx
***,
In addition to Michel because you have everything almost ready probably is
this easier (not tested)
Dim oIE As New Webbrowser
' instantiate Internet Explorer'oIE = CreateObject("InternetExplorer.Application")
And than you have to use probably some other names of properties.
oIE.left = 225As general hint try to avoid forever the raw "object" in your program.
oIE.top = 75
oIE.width = 680 ' width of dialog...
oIE.height = 600
oIE.menubar = True
oIE.toolbar = True
oIE.statusbar = False
oIE.addressbar = False
oIE.Resizable = True
oIE.navigate("about:blank")
etc...
If you want to use really Internet Explorer than you have to set a
reference to SHDOCVW (Microsoft Internet Controls) and than tell to use
that as
dim oIE as new ShDocVW.Interenetexplorer
I hope this helps,
Cor
.
- References:
- Want to Eary Bind Instead of Late Bind Object an IE Object
- From: *** Sutton
- Re: Want to Eary Bind Instead of Late Bind Object an IE Object
- From: Cor Ligthert [MVP]
- Want to Eary Bind Instead of Late Bind Object an IE Object
- Prev by Date: Re: Access DB Issues - Again
- Next by Date: Re: CHRW
- Previous by thread: Re: Want to Eary Bind Instead of Late Bind Object an IE Object
- Next by thread: Regular Expression Excluding Exact String
- Index(es):