Results 1 to 4 of 4

Thread: Ping

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Apr 1999
    Location
    Freeport
    Posts
    204

    Post

    Does anybody have a ping code so I can ping my internet every 5 seconds

  2. #2

    Thread Starter
    Addicted Member
    Join Date
    Apr 1999
    Location
    Freeport
    Posts
    204

    Post

    How about guru do you know of a ping program

  3. #3
    Addicted Member
    Join Date
    Oct 1999
    Posts
    232

    Post

    1.Create the file myping.bat

    Code:
    ping www.microsoft.com  > myping.txt
    2.Call the .bat file from vb

    Code:
    shell myping.bat
    3.Read the .txt file for results

    Code:
    Open "myping.txt" For Input As #1
    Text1 = Input$(LOF(1), 1)
    Close #1
    ------------------
    smalig
    [email protected]
    http://vbcode.webhostme.com/


  4. #4
    Guest

    Post

    How to Ping an IP Address Using Visual Basic

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

    Vincent van den Braken
    EMail: [email protected]
    ICQ: 15440110
    Homepage: http://www.azzmodan.demon.nl




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