Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. samphdauto

    navigate2 flag parameters

    Hi Anthony.. here is what I need to do I have a form with a cmdExtract which after fires it needs to: By using Inet. How can I copy a news article text from an URL into a Word.doc file? Also copy the article headline into a table in Access and copy it’s now new location on the hard drive in...
  2. samphdauto

    Coping text from Inet to a .doc file

    Hello By using Inet. How can I copy a news article text into a Word.doc file? Also copy the article headline into a table in Access and copy it’s now new location on the hard drive in a Access.mdb table? The Access table has Headline and Location as fields. Thanks a lot Sam
  3. samphdauto

    Get LinkText & LinkHref from Inet

    Hello I have this code which was given by a programmer. it extracts the LinkText and LinkHref from a WebBrowser. Could any one help. I need a code to use on Inet control. thanks alot Sam Option Explicit Public Type LinkInfo LinkText As New Collection LinkHref As New Collection End Type...
  4. samphdauto

    get info from a Hypertext link innertext

    I was able to do that last task all right Private Sub cmdExtract_Click() Dim MyInfo As LinkInfo Dim i As Variant Dim c As Long c = 1 MyInfo = GetLinkInfo(WB1) For Each i In MyInfo.LinkText MsgBox MyInfo.LinkText.Item(c) & " " &...
  5. samphdauto

    get info from a Hypertext link innertext

    I am asking 2many q's sorry. but I just need to get this to work. this code is poping an error. compile error. argument not optional and .LinkText in the MsgBox line is blue highlighted Private Sub cmdExtract_Click() Dim MyInfo As LinkInfo Dim i As Variant MyInfo =...
  6. samphdauto

    get info from a Hypertext link innertext

    yes, I wanted the WebBrowser control to navigate and it is working very good. alos I want to navigate without using the browser. but by useing Inet control. how can I write that code .. thanks alot Sam
  7. samphdauto

    get info from a Hypertext link innertext

    I will be using Inet. would this work? Option Explicit Public Type LinkInfo LinkText As New Collection LinkHref As New Collection End Type Public Function GetLinkInfo(Internet As Inet) As LinkInfo 'This will return all of the links in the page with 'the url of the link and the text (if...
  8. samphdauto

    get info from a Hypertext link innertext

    thanks alot.. what would the change in the code be if I don't use a WebBrowser. I want the info in variants so I can save them in my Access DB. Sam
  9. samphdauto

    Count of Tags in a page

    Hello I am using vb6, need to know the count of Tags in WB1 in a MsgBox. and another MsgBox to show all the Tags and their InnerText thanks Sam
  10. samphdauto

    navigate2 flag parameters

    Anthoney.. if I may ask you if I have an URL and a hypertext link like below URL = http://www.abcnews.go.com Story title = the car of the future and if I cann't go to it this way. MyWeb.Navigate2 http://www.abcnews.go.com, the car of the futre how can I? thanks' Sam
  11. samphdauto

    get info from a Hypertext link innertext

    I have been really spending time on this for no avail. Please point me to the right direction I have a URL for example www.abcnews.com which if displayed on a browser it has titles of stories. For example a hypertext link story (The car of the future) How can I retrieve the text of the story...

Part and Inventory Search

Back
Top