Results 1 to 2 of 2

Thread: Browser Based

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Aug 2000
    Posts
    879

    Angry

    I'm making a program that will go to a website then check if a word exists on the current page. Lets say it loads this page and then tries to find the word "word". Is this possible? I've also heard of another way, downloading the page's source into a file then finding the word in the file! Please give any suggestion. All is appreciated!
    Visual Basic 6.0
    Visual C++ 5
    Delphi 5


  2. #2
    Frenzied Member Jop's Avatar
    Join Date
    Mar 2000
    Location
    Amsterdam, the Netherlands
    Posts
    1,986
    Code:
    'Put an Internet Transfer Control (ITC) on your form
    MyString = Inet1.OpenUrl("MYURL")
    If Instr(1,MyString,"MYWORDTOSEEKFOR") <> 0 Then
    MsgBOx "Found!"
    Else
    MsgBOx "Not in here!"
    End If
    Hope it helped!
    Jop - validweb.nl

    Alcohol doesn't solve any problems, but then again, neither does milk.

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