Results 1 to 5 of 5

Thread: Search The Web With VB

  1. #1

    Thread Starter
    Addicted Member Tha Joey Madnez's Avatar
    Join Date
    May 2004
    Location
    Netherlands
    Posts
    179

    Search The Web With VB

    Hi,

    Is it possible to search the internet with visual basic for particulair file's, or strings ?

    THX !
    100% Done with the Software forLuidia

    Click here to goto the Luidia website

    -=[Visual Basic][Addicted]=-

  2. #2
    PowerPoster Deepak Sakpal's Avatar
    Join Date
    Mar 2002
    Location
    Mumbai, India
    Posts
    2,424

  3. #3
    PowerPoster Deepak Sakpal's Avatar
    Join Date
    Mar 2002
    Location
    Mumbai, India
    Posts
    2,424

    or

    VB Code:
    1. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    2. Const SW_SHOWNORMAL = 1
    3.  
    4. Private Sub Command1_Click()
    5.     Dim sSearchText As String
    6.     Dim GoogleSearch As String
    7.    
    8.     sSearchText = "visual+basic"
    9.     GoogleSearch = "http://www.google.co.in/search?hl=en&q=" & sSearchText & "&btnG=Google+Search&meta="
    10.     ShellExecute Me.hwnd, vbNullString, GoogleSearch, vbNullString, "C:\", SW_SHOWNORMAL
    11. End Sub

  4. #4
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    What about this:

    http://www.google.com/apis/

  5. #5

    Thread Starter
    Addicted Member Tha Joey Madnez's Avatar
    Join Date
    May 2004
    Location
    Netherlands
    Posts
    179
    Uhm...... THX For the reply's but wut i want is,
    Search a website "Supernova.org" for bittorent file's.
    So i want to extract al the download links from the torrent files.

    its hard to explain

    thx anywayz
    100% Done with the Software forLuidia

    Click here to goto the Luidia website

    -=[Visual Basic][Addicted]=-

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