When my group switched to IE7, certain web page graphics that were available in IE6 (and Firefox) are only showing up as placeholders now. I have searched and searched and can't find a way to turn these graphics on. Some graphics are still there, so graphics are not blocked. I'm accessing IE through VBA in MS Access and have decided that it may be better to switch to Firefox. My problem is that I'm not sure what the equivalent code may be to substitute for the following:
strURL = "Set ie = CreateObject("internetexplorer.application")
With ie
.Navigate strURL
.MenuBar = 0
.StatusBar = 0
.Toolbar = 0
.Left = 1
.Top = 1
.Height = 1
.Width = 1
.Visible = True
.Silent = True
Do While ie.ReadyState <> 4
DoEvents
Loop
With .Document.body
readHTML = .innerhtml
readTEXT = .innertext
End With
End With
I'm guessing that most of this will be the same, but I've so far been unable to create the Firefox object. I have scanned the list of References in Access and there are none for Mozilla or Firefox. Am I out of luck with Firefox?
Thanks.
strURL = "Set ie = CreateObject("internetexplorer.application")
With ie
.Navigate strURL
.MenuBar = 0
.StatusBar = 0
.Toolbar = 0
.Left = 1
.Top = 1
.Height = 1
.Width = 1
.Visible = True
.Silent = True
Do While ie.ReadyState <> 4
DoEvents
Loop
With .Document.body
readHTML = .innerhtml
readTEXT = .innertext
End With
End With
I'm guessing that most of this will be the same, but I've so far been unable to create the Firefox object. I have scanned the list of References in Access and there are none for Mozilla or Firefox. Am I out of luck with Firefox?
Thanks.