S
SEAN DI''''ANNO
Hello,
Originally, I was trying to insert a Micorsoft Web Viewer onto my form to
show a whole web page and did post a question of how this could be done and
see the whole page not just a bit of it. The qeustion has not been answered
so maybe its just not possible. However in trying to search for the answer I
found this piece of code. Would anyone know, can I use this to show for
example the lastest news on companies..not a specific one just general
company information..E.g Tescos Is In Financial Trouble etc. Does anyone know
of a feed that I could use to achieve this please that will work with the web
browser.
Option Compare Database
Private Sub Form_Load()
With Me.WebBrowser
..Navigate2 "about:blank"
..Object.Document.Write _
"<html><head><script language=""JavaScript"" " & _
"type=""text/javascript"" " & _
"src=""http://www.insurancejournal.com/newsfeed/ascroll.php"">" & _
"</script></head><body>" & _
"</body></html>"
End With
End Sub
Originally, I was trying to insert a Micorsoft Web Viewer onto my form to
show a whole web page and did post a question of how this could be done and
see the whole page not just a bit of it. The qeustion has not been answered
so maybe its just not possible. However in trying to search for the answer I
found this piece of code. Would anyone know, can I use this to show for
example the lastest news on companies..not a specific one just general
company information..E.g Tescos Is In Financial Trouble etc. Does anyone know
of a feed that I could use to achieve this please that will work with the web
browser.
Option Compare Database
Private Sub Form_Load()
With Me.WebBrowser
..Navigate2 "about:blank"
..Object.Document.Write _
"<html><head><script language=""JavaScript"" " & _
"type=""text/javascript"" " & _
"src=""http://www.insurancejournal.com/newsfeed/ascroll.php"">" & _
"</script></head><body>" & _
"</body></html>"
End With
End Sub