Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
VB Ping with several ECHO Requests
Name: Paulo Date: July 24, 2002 at 09:34:43 Pacific
Comment:
Hi! I have tried the sample code that was sent in the post "VB Ping". The problem is that I can’t make it work with several ECHO Requests in the same PING command (like it is possible to do in DOS). I have tried to modify the code in several ways but no luck! I have to perform several tests regarding Round Trip Delay to a network access. Due to the larger time for the first ECHO Request, this test must be performed with at least 10 ECHO Requests in the same PING command. So you can have an idea here is a sample of the corresponding DOS command (ping www.yahoo.com -l 32 -n 4 -w 1500) This means that I am making a PING to Yahoo.com with 32 bytes of data, with 4 ECHO requests and a timeout of 1500 ms. The answer should be:
Pinging www.yahoo.akadns.net [64.58.76.179] with 32 bytes of data: Request timed out. Request timed out. Request timed out. Request timed out.
Summary: Hi! I have tried this sample code to send ping commands. The problem is that I can’t make it work with several ECHO Requests in the same PING command (like it is possible to do in DOS). I have tried t...
Summary: I was wondering if someone could help. I need a self-closing vb msgbox with a timer that will start a batch file when done. I don't care if it shows a count down or not, just so it doesn't require use...
Summary: It's easier to use findstr with multiple search terms. ping %host%|findstr /i "average timed" On a default ping "timed out" appears 4 time because the default echo request is four. It would also be ...