Search results for query: *

  • Users: P9142
  • 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

    If there isn't a way to remove the tag, is there a simple way to tell what the color of the background behind a certain link is so I can set it to this?
  3. 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...
  4. P

    accessing individual links using mshtml.HTMLDocument

    Uggh, thanks John. I don't know how I missed that.
  5. P

    accessing individual links using mshtml.HTMLDocument

    OK, I feel like a huge noob, which I am. Basically what I am trying to do is create a program which will go though each link in a webpage individually just like you would if you were pressing the tab key each time. I want the program to automate this process waiting half a second before moving...
  6. P

    accessing individual links using mshtml.HTMLDocument

    My bad, sorry about that. So basically I am stuck with MSHTML?
  7. P

    accessing individual links using mshtml.HTMLDocument

    I am using Visual Studio .NET 2003 which is .NET 1.1 Can I still use the same functionality you described above, or do I need .NET 2.0?
  8. P

    accessing individual links using mshtml.HTMLDocument

    Could you please explain why this method is better than using MSHTML?
  9. P

    accessing individual links using mshtml.HTMLDocument

    Sorry, I am an uber newbie. Should I be doing something else? I just realized that I didn't input my code entirely correctly. It should look like this: Dim htmldoc As mshtml.HTMLDocument htmldoc = DirectCast(Explorer.Document, mshtml.HTMLDocument) Debug.WriteLine(htmldoc.links(2).innerText)
  10. 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...
  11. 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