Results 1 to 6 of 6
  1. #1
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107

    Question [Request] Does anyone know how to make a ip changer

    Does anyone know how to make a ip changer in visual basic 2008? I want to know because i want to add it to one of my programs.

  2. #2
    XGelite's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Enter text here
    Posts
    1,344
    Reputation
    12
    Thanks
    276
    easiest thing in the book!

    edit: it should now not give you an error!

    Code:
     Dim sYourCommand As String
    
    sYourCommand = "ipconfig/flushdns"
            Shell("cmd /c " & sYourCommand, vbHide)
    
            sYourCommand = "ipconfig/release"
            Shell("cmd /c " & sYourCommand, vbHide)
           
     sYourCommand = "ipconfig/renew"
            Shell("cmd /c " & sYourCommand, vbHide)
    now there are other ways to do it, but this is how i do it, and how i always will



    Thank me if i helped!
    Last edited by XGelite; 11-14-2009 at 07:28 PM.

  3. The Following 3 Users Say Thank You to XGelite For This Useful Post:

    ac1d_buRn (11-15-2009),CounterAct (11-14-2009),trevor206 (11-14-2009)

  4. #3
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    Quote Originally Posted by XGelite View Post
    easiest thing in the book!


    Code:
    sYourCommand = "ipconfig/flushdns"
            Shell("cmd /c " & sYourCommand, vbHide)
    
            sYourCommand = "ipconfig/release"
            Shell("cmd /c " & sYourCommand, vbHide)
            sYourCommand = "ipconfig/renew"
            Shell("cmd /c " & sYourCommand, vbHide)
    now there are other ways to do it, but this is how i do it, and how i always will



    Thank me if i helped!
    mine gets an error Error 1 Name 'sYourCommand' is not declared.
    can you help me. (i probably sound really noob.)

  5. The Following User Says Thank You to trevor206 For This Useful Post:

    XGelite (11-14-2009)

  6. #4
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    [YOUTUBE]<object width="425" height="344"><param name="movie" value="https://www.youtube.com/v/zPlFtnlxdPU&hl=en_US&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="https://www.youtube.com/v/zPlFtnlxdPU&hl=en_US&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>[/YOUTUBE]

  7. The Following User Says Thank You to Pixie For This Useful Post:

    trevor206 (11-14-2009)

  8. #5
    XGelite's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Enter text here
    Posts
    1,344
    Reputation
    12
    Thanks
    276
    Quote Originally Posted by trevor206 View Post
    mine gets an error Error 1 Name 'sYourCommand' is not declared.
    can you help me. (i probably sound really noob.)
    woops sorry my mistake

    add this to to the top of that code

    Code:
     Dim sYourCommand As String
    so it should now look like this:

    Code:
     Dim sYourCommand As String
            sYourCommand = "ipconfig/flushdns"
            Shell("cmd /c " & sYourCommand, vbHide)
    
            sYourCommand = "ipconfig/release"
            Shell("cmd /c " & sYourCommand, vbHide)
            sYourCommand = "ipconfig/renew"
            Shell("cmd /c " & sYourCommand, vbHide)

  9. The Following 2 Users Say Thank You to XGelite For This Useful Post:

    CounterAct (11-14-2009),trevor206 (11-14-2009)

  10. #6
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    so i assume this has been solved?

  11. The Following User Says Thank You to Bombsaway707 For This Useful Post:

    Pixie (11-14-2009)

Similar Threads

  1. does anyone know how to make a no recoil hack?
    By connor919 in forum Combat Arms Discussions
    Replies: 2
    Last Post: 07-20-2010, 10:35 AM
  2. Does anyone know how to make mod
    By tsemingchun in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 1
    Last Post: 06-11-2010, 05:32 PM
  3. Does anyone know how to make mod
    By tsemingchun in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 2
    Last Post: 06-08-2010, 04:15 AM
  4. Does anyone know how to make the combat arms load faster
    By ChristopherBigWallace in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 07-03-2009, 09:47 AM
  5. [ReQuEsT] Does any1 know how to make a gun speed hack
    By Twisted_scream in forum WarRock - International Hacks
    Replies: 4
    Last Post: 05-07-2007, 12:47 PM

Tags for this Thread