i want to start and stop a marquee item that exists on a webpage from my vb app. i tried to access it using...
Set doc = WebBrowser1.Document
Set scroller = doc.All.Item("scroller"
scroller.stop
..but i got a object or with variable not defined. on the html page i have
<Marquee Id="scroller">
....
</Marquee>
i can figure out why it won't work. any suggestions??
Set doc = WebBrowser1.Document
Set scroller = doc.All.Item("scroller"
scroller.stop
..but i got a object or with variable not defined. on the html page i have
<Marquee Id="scroller">
....
</Marquee>
i can figure out why it won't work. any suggestions??