Hi,
Is it possible to search the internet with visual basic for particulair file's, or strings ?
THX ! ;)
Printable View
Hi,
Is it possible to search the internet with visual basic for particulair file's, or strings ?
THX ! ;)
VB Code:
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 Const SW_SHOWNORMAL = 1 Private Sub Command1_Click() Dim sSearchText As String Dim GoogleSearch As String sSearchText = "visual+basic" GoogleSearch = "http://www.google.co.in/search?hl=en&q=" & sSearchText & "&btnG=Google+Search&meta=" ShellExecute Me.hwnd, vbNullString, GoogleSearch, vbNullString, "C:\", SW_SHOWNORMAL End Sub
What about this:
http://www.google.com/apis/
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 :)