Results 1 to 3 of 3

Thread: Fast Pinging from VB

  1. #1

    Thread Starter
    New Member
    Join Date
    Apr 2002
    Posts
    7

    Fast Pinging from VB

    I wanna know if is there any way to ping other computers on LAN and it must be very fast in getting response.

    Because i will ping about 30 computers and get their responses. I will try to determine which computer is online and which is offline by pinging them.

    Also if you have any other idea to do that without pinging and without using program on clients i will be glad to hear from you.

    Thanks.
    ..:: Zafer ::..

  2. #2
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344
    I am not sure how you can ping a computer over a LAN in vb but search www.vbcode.com they might an example. I know they have code to ping a website maybe that uses the same kind of thing.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  3. #3
    PowerPoster Beacon's Avatar
    Join Date
    Jan 2001
    Location
    Pub Floor
    Posts
    3,188
    You can but it aint gonna be any faster just coz it's from vb!
    It still will be as fast as from a command prompt etc.

    A better way would be to have a client app to run on a client pc and test if connected to network or if connected to internet!

    Attached is a module to use:

    On a form put:
    VB Code:
    1. Dim ECHO As ICMP_ECHO_REPLY  
    2.  
    3.   'ping an ip address, passing the
    4.   'address and the ECHO structure
    5.    Call Ping("127.0.0.1", ECHO)
    6.    
    7.    
    8.   'display the results from the ECHO structure
    9. Text1.Text = "Server Trip Time " & ECHO.RoundTripTime & " ms"

    later
    b
    Attached Files Attached Files

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width