Results 1 to 7 of 7
  1. #1
    -BloodyE-'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    3
    My Mood
    Grumpy

    Talking [Tutorial]Website to IP

    Visual Basic 2008 Tutorial!

    Website To IP
    Hey guys, Bloody here, and in this simple tutorial, I'm going to show you how to create a simple application using Visual Basic 2008.net

    I'm going to teach you how to make a website to IP by pinging the site.
    This is were you type in a website such as Google and when you click a button, it shows you the IP of the website.
    This can be very useful for quickly finding IP's of websites without having to go to CMD. This can also be an additional tool to a shell booter if you decided to make one, anyway, on with the tutorial.

    1) Firstly, open up Visual Basic 2008 and create a new project, call it something like "Website to IP"

    2) Secondly, add a button and two textbox's from the toolbar.
    You should have something similar to this;


    3) Make your application look neater by adjusting your tools on the application so you can create an application which looks like this;

    To create the text on the button and application click on the bar were it says "Form 1" and go to the properties bar which should show up and were it says "text" call it whatever you want. The same applys for the button, click it, and go to the properties and look for "Text" and change the text to Get IP

    4) Time for the coding.
    Double click button 1 and type the following code in;
    Firstly, were it says Public Class Form 1, type above that
    Imports System.Net.NetworkInformation
    Now type below Private Sub Button1_click
    Try
    Dim Pinger As New Ping
    Dim PingerReply As PingReply
    PingerReply = Pinger.Send(TextBox1.Text)
    TextBox2.Text = PingerReply.Address.ToString
    Catch ex As Exception
    MsgBox(ex.Message, MsgBoxStyle.Critical)
    End Try


    Your coding should look like this;


    Now press the debug button at the bar on the top and test it out;


    Neating Up The Application
    Okay, the codings done, now time to add those little features which makes the application a lot better.
    Click on textbox2 but dont double click and go to the properties bar, and look for read only and make it "True"
    And make the BackColour be "Window"
    This makes it so you cant type in Texbox2 which is were the IP will be shown, your application should now look similar to this.


    Thank You For Reading this Tutorial, if you have any questions or concerns feel free to reply on this thread or send me a PM.
    Also, if this helped you, please post constructive comments.
    Also guys, this is my first tutorial so it might not be very good, but I made the effort!

    Thanks.

  2. The Following User Says Thank You to -BloodyE- For This Useful Post:

    flameswor10 (08-15-2010)

  3. #2
    flameswor10's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    12,528
    Reputation
    981
    Thanks
    10,409
    My Mood
    In Love
    Nice try dude. It's kinda simple and is great. + thanked
    No I do not make game hacks anymore, please stop asking.

  4. #3
    -BloodyE-'s Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    3
    My Mood
    Grumpy
    Quote Originally Posted by flameswor10 View Post
    Nice try dude. It's kinda simple and is great. + thanked
    Took a while to type. Imma go to sleep and see how many view's this has tommorow.

  5. #4
    Hassan's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    System.Threading.Tasks
    Posts
    4,764
    Reputation
    495
    Thanks
    2,133
    My Mood
    Dead
    Simply but nicely done. Good

  6. #5
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    note, it does not work for all websites!!!
    EX: maximnapadiy.com IP: 207.182.145.229

    IP reroutes to http:/t hos*****m/paid-hosting/paidhostingplans

    ~link approved by nextgen1
    Last edited by NextGen1; 08-16-2010 at 04:29 AM.


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  7. #6
    /b/oss's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    13,651
    Reputation
    795
    Thanks
    3,547
    i saw this somewhere. accoually if its your GJ. (i got CMD fucked up so ...)

  8. #7
    aLcohoL_95's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    SatyRicon
    Posts
    685
    Reputation
    8
    Thanks
    291
    My Mood
    Cynical
    hmm there is a lot of tutorial like that
    can u give the credits?

    CANNIBAL CORPSE P0WNS


  9. The Following User Says Thank You to aLcohoL_95 For This Useful Post:

    NextGen1 (08-17-2010)

Similar Threads

  1. [TUTORIAL] How to access any website from restricted school network
    By [GENIUS] HaXoR in forum General Hacking
    Replies: 4
    Last Post: 07-01-2013, 03:56 PM
  2. [Request] Website banner tutorial
    By tehshiz in forum Tutorials
    Replies: 2
    Last Post: 10-19-2010, 10:49 PM
  3. What tutorial website..
    By krew951 in forum Art & Graphic Design
    Replies: 3
    Last Post: 08-24-2009, 03:20 PM
  4. Replies: 1
    Last Post: 06-06-2009, 02:50 AM
  5. Website ID Card Tutorial
    By Bull3t in forum Tutorials
    Replies: 15
    Last Post: 09-24-2007, 01:30 PM