Page 2 of 2 FirstFirst 12
Results 16 to 22 of 22
  1. #16
    polas6's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    22
    Reputation
    6
    Thanks
    0
    I got the same error and with dotnet.dll and with dotnet20.dll too.
    I first using google api search dll components.
    I do not understand with my simple google api search engine working great but not with this code.

  2. #17
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    You exceeded some quota google has on their API services to prevent abuse of the services. Perhaps during your app testing you submitted too many queries to their API, and you will have to wait until it is reset (probably a 24 hour thing) until you can run queries again.



  3. #18
    polas6's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    22
    Reputation
    6
    Thanks
    0
    Ok anyway it won't work.
    I found solution it gives me only limited time a day so i thought i wont use api anymore.

    Can i ask something about how to extract using regular expresions links from google using this code ?
    If you don't i will not ask anymore

    i need to extract all links something like php,asp,aspx,html,html,js,css and so on.
    But not gif,or png.
    i'm new for regular expression.

    here is the code.

    Code:
    Dim wc As New WebClient
            Dim source As String = wc.DownloadString("https://" + TextBox1.Text)
            Dim m1 As MatchCollection = Regex.Matches(source, "<a.*?href=""(.*?)"".*?>(.*?)</a>", RegexOptions.Singleline + RegexOptions.IgnoreCase)
            For Each m As Match In m1
                Dim value As String = m.Groups(0).Value
                ListBox1.Items.Add(value)
    
            Next
    This is code extract only in <a href="">show me something cool</a>
    And i need like this https://www.mysitealllinks.com
    or just a text.

    it will be better like

    Google & textbox1.text
    do you need a help from us

    YouTube - Broadcast Yourself. & textbox1.text
    vb.net programming

    YouTube - Broadcast Yourself. & textbox1.text
    vb.net programming for begginers

    And so on.

    Can you help me ?
    I think it will be how knows that simple right ?

  4. #19
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Why don't you simply edit this part:

    ListBox1.Items.Add(value)

    and check whether it is a gif or so...

    If Not value.EndsWith(".gif") Then
    ListBox1.Items.Add(value)
    End If
    Last edited by Blubb1337; 07-28-2011 at 03:58 PM.



  5. #20
    polas6's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    22
    Reputation
    6
    Thanks
    0
    yeah the code is working but do not remove <a href="">blabla</a>
    I need only begin with
    https://www.site.com
    https://www.site.comwannagofar.html
    https://www.site.com/thiswouldbebetter.php

  6. #21
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by polas6 View Post
    yeah the code is working but do not remove <a href="">blabla</a>
    I need only begin with
    https://www.site.com
    https://www.site.comwannagofar.html
    https://www.site.com/thiswouldbebetter.php
    If value.StartsWith("www.site.com") Then
    'Bla
    End if



  7. #22
    polas6's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Posts
    22
    Reputation
    6
    Thanks
    0
    Thanks man

Page 2 of 2 FirstFirst 12

Similar Threads

  1. How to make Strife works
    By Hahaz in forum Combat Arms Hacks & Cheats
    Replies: 21
    Last Post: 12-29-2009, 02:12 AM
  2. How to make hacks work
    By n3rd in forum Combat Arms Hacks & Cheats
    Replies: 4
    Last Post: 12-31-2008, 11:03 PM
  3. FarCry 2 | How to make it work for all!!
    By netanel1000 in forum General
    Replies: 1
    Last Post: 10-25-2008, 06:56 AM
  4. VB6 HELP HOW TO MAKE IT WORK
    By poon hacker in forum WarRock - International Hacks
    Replies: 3
    Last Post: 10-11-2007, 08:41 PM
  5. How to make a working NFV Hack
    By System79 in forum Game Hacking Tutorials
    Replies: 1
    Last Post: 09-04-2006, 04:56 AM