Search results for query: *

  • Users: P9142
  • Content: Threads
  • Order by date
  1. P

    Setting the size of the Internet Explorer window

    I am opening up a new Internet Explorer window with the following code: Explorer = New SHDocVw.InternetExplorer() Explorer.Visible = True Is there a way to set the size of this window in VB.NET?
  2. P

    setting background color of links using mshtml

    I am trying to set, and then unset the background color of links using html. Setting the background color is easy enough using something like this: Dim htmldoc As mshtml.HTMLDocument htmldoc.links.item(1).style.backgroundColor() = "#AAFFFF" However, to unset the background color I need to...
  3. P

    accessing individual links using mshtml.HTMLDocument

    Sorry for the newbie question, but this is driving me nuts. I am trying to access each link individually, but am having trouble. When I try this: htmldoc = DirectCast(Explorer.Document, mshtml.HTMLDocument) Debug.WriteLine(htmldoc.links(2).innerText) 'writing innerText of second link I keep...
  4. P

    Using WebBrowser Control to highlight links

    I want to be able to highlight the links as I scroll through them using the "tab key". Using WebBrowser, how can I change the background color for the current link that I am on (the one surrounded by dots)?
Back
Top