
|
|||||||
| Notices |
| Code Requests People having specific needs to automate their IP retrieval can post their needs here in hopes that a coder can help them out. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Member
Join Date: May 2012
Posts: 1
![]() |
I am looking for a VB script what would link up to the http://automation.whatismyip.com/n09230945NL.asp site. Would someone be able to help?
|
|
|
|
|
#2 |
|
Administrator
Join Date: May 2008
Location: Pigeon Forge, TN
Posts: 1,399
![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Hi xanderful,
I'm hoping one of the community members can jump on and offer some of their code. WhatIsMyIP.com doesn't support any scripts of our own at this point. |
|
|
|
|
#3 |
|
Member
Join Date: Jan 2012
Posts: 42
![]() |
Save the following as (for example) whatismyip.vbs, double-click to run it
Code:
Dim o
Set o = CreateObject("MSXML2.XMLHTTP")
o.open "GET", "http://automation.whatismyip.com/n09230945NL.asp", False
o.send
MsgBox o.responseText
YoungJules |
|
|
|
|
#4 |
|
Member
Join Date: Jan 2012
Posts: 42
![]() |
@xanderful
Kind regards, YoungJules EDIT by Shnerdly: I moved the code thread to this thread for clarity. As a stand alone thread it was unclear as to it's purpose. Last edited by Shnerdly; 06-02-2012 at 09:48 AM. Reason: clarity |
|
|
|
|
#5 |
|
Member
Join Date: Jan 2012
Posts: 42
![]() |
The Code Samples sub-forum was good for keeping all code samples together, my reply to xanderful showed where to go for that particular code sample in response to the request made.
Now we have some code here, some there... I don't find moving the post out of code samples has achieved anything positive at all. |
|
|
|
|
#6 |
|
The Terminator
Join Date: Jun 2010
Location: The frozen tundra of Minnesota
Posts: 1,019
![]() |
@YoungJules
The post I moved was essentially just code without any explanation of what it was for. The title was just VB. I moved it to where it applied so others would know what it was for. If you want to add it to the Code Samples forum, please do so but define it's purpose.
__________________
► ► Grammar is important. For instance, commas save lives: Let's eat grandpa. OR Lets eat, grandpa. ► ► |
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|