Results 1 to 4 of 4

Thread: [RESOLVED] how to get link or url from web page?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Oct 2010
    Posts
    377

    Resolved [RESOLVED] how to get link or url from web page?

    How to get link or url from web page?

  2. #2
    New Member
    Join Date
    Mar 2012
    Posts
    9

    Re: how to get link or url from web page?

    Hi iamresearcher,

    Did you get an answer to your question?
    If not, can you please tell me more what it is you are trying to do?

    Tx,

    VBGypsy.

  3. #3
    Member
    Join Date
    Aug 2006
    Posts
    57

    Re: how to get link or url from web page?

    use GetElement on web browser control

    like this
    Code:
    dim links as HtmlElementCollection 
    links = me.Webbrowser1.Document.GetElementsByTagName("a")
    'or
    links = me.Webbrowser1.Document.links

  4. #4
    PowerPoster
    Join Date
    Aug 2011
    Location
    B.C., Canada
    Posts
    2,887

    Re: how to get link or url from web page?

    Also
    vb Code:
    1. Dim LinkURL As String
    2. LinkURL = WebBrowser1.LocationURL
    There are alot of different ways depending on how you want to do it

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width