Results 1 to 4 of 4

Thread: Ping Network

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2008
    Posts
    8

    Ping Network

    Nite,

    I'm junior VB programmer from Indonesia.

    Ping network, code:

    Ping Network
    vb Code:
    1. Option Explicit
    2. Const SYNCHRONIZE = &H100000
    3. Const INFINITE = &HFFFF
    4. Const WAIT_OBJECT_0 = 0
    5. Const WAIT_TIMEOUT = &H102
    6. Dim stopflag As Boolean
    7. Dim errorflag As Boolean
    8. Dim mindelay As Integer
    9. Dim maxdelay As Integer
    10. Dim totaldelay As Long
    11. Dim avgdelay As Integer
    12. Dim lcount As Long
    13. Dim pingMessage(26) As String
    14. Dim ctrl
    15. Private Declare Function SendMessage Lib “User32″ Alias “SendMessageA” (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
    16. Private Declare Function OpenProcess Lib “kernel32″ (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
    17. Private Declare Function WaitForSingleObject Lib “kernel32″ (ByVal hHandle As Long, ByVal dwMilliseconds As Long) As Long
    18. Private Declare Function CloseHandle Lib “kernel32″ (ByVal hObject As Long) As Long
    19. Private Sub cmdClear_Click()
    20. Open “C:\log.txt” For Output As #1
    21. Close #1
    22. txtoutput.Text = “”
    23. txtpinglog.Text = “”
    24. End Sub
    25. Private Sub chklog_Click()
    26. End Sub
    27. Private Sub cmdExit_Click()
    28. Unload Me
    29. End
    30. End Sub
    31. Private Sub cmdlog_Click()
    32. Load frmlog
    33. frmlog.Show 1
    34. End Sub
    35. Private Sub cmdPing_Click()
    36. DoEvents
    37. If cmdPing.Caption = “Ping” Then
    38. lblstatus.Caption = “Pinging ” & txtIP.Text & ” with ” & txtbuffer.Text & “KB of data”
    39. txtIP.Locked = True
    40. cmdPing.BackColor = &HFF&
    41. cmdlog.Enabled = False
    42. cmdPing.Caption = “Stop”
    43. stopflag = False
    44. Else
    45. stopflag = True
    46. cmdPing.Caption = “Ping”
    47. txtIP.Locked = False
    48. cmdPing.BackColor = &H80FF80
    49. cmdlog.Enabled = True
    50. lblstatus.Caption = “Stopped”
    51. End If
    52.  
    53. While stopflag = False
    54. DoEvents
    55.  
    56. Dim ShellX As String
    57. Dim lPid As Long
    58. Dim lHnd As Long
    59. Dim lRet As Long
    60. Dim VarX As String
    61. Dim Ptime As Integer
    62. Dim pttl As Integer
    63. Dim pbyte As Integer
    64. Dim i As Integer
    65. Dim pingresult As String
    66. Dim tmin As Integer
    67. Dim tmax As Integer
    68. Dim tavg As Integer
    69.  
    70. If txtIP.Text <> “” Then
    71. DoEvents
    72. ShellX = Shell(”command.com /c ping -n 1 -l ” & txtbuffer.Text & ” ” & txtIP.Text & ” > C:\log.txt”, vbHide)
    73. lPid = ShellX
    74. If lPid <> 0 Then
    75. lHnd = OpenProcess(SYNCHRONIZE, 0, lPid)
    76. If lHnd <> 0 Then
    77. lRet = WaitForSingleObject(lHnd, INFINITE)
    78. CloseHandle (lHnd)
    79. End If
    80.  
    81. frmmain.MousePointer = 0
    82. Open “C:\log.txt” For Input As #1
    83. txtoutput.Text = Input(LOF(1), 1)
    84.  
    85. pingresult = Trim(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “:”) + 1, Len(txtoutput.Text) - (InStr(1, txtoutput.Text, “:”) + Len(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “Ping “))))))
    86.  
    87. ‘check for error
    88. If InStr(1, pingresult, “Reply”) = 0 Then
    89. Dim message As String
    90. If InStr(1, pingresult, “Hardware”) <> 0 Then
    91. message = “HARDWARE FAULT”
    92. Else
    93. If InStr(1, pingresult, “Request”) <> 0 Then
    94. message = “Request time out”
    95. Else
    96. If InStr(1, pingresult, “Destination”) <> 0 Then
    97. message = “Destination Computer is not reachable”
    98. Else
    99. message = pingresult
    100. End If
    101.  
    102. End If
    103. End If
    104. pingresult = “ERROR with ” & txtIP.Text & “:” & message
    105.  
    106.  
    107. ‘pingmessage
    108. txtpinglog.Text = “”
    109. For i = 0 To 22
    110. pingMessage(i) = pingMessage(i + 1)
    111. If pingMessage(i + 1) <> “” Then
    112. If txtpinglog.Text <> “” Then
    113. txtpinglog.Text = txtpinglog.Text & vbCrLf
    114. End If
    115. txtpinglog.Text = txtpinglog.Text & pingMessage(i + 1)
    116. End If
    117. Next
    118.  
    119. pingMessage(23) = pingresult
    120. If txtpinglog.Text <> “” Then
    121. txtpinglog.Text = txtpinglog.Text & vbCrLf
    122. End If
    123. txtpinglog.Text = txtpinglog.Text & pingresult
    124. For i = 0 To 31
    125. pbrtime(i).Value = pbrtime(i + 1).Value
    126. Next
    127. pbrtime(32).Value = 0
    128.  
    129.  
    130.  
    131. ‘loging
    132. If chklog.Value = 1 Then
    133. If errorflag = False Then
    134. errorflag = True
    135. Open “c:\pinglog.txt” For Append As #2
    136. Print #2, Now
    137. Print #2, pingresult
    138. Print #2, String(91, “*”)
    139. Close #2
    140. End If
    141. End If
    142. lcount = 0
    143. mindelay = 0
    144. maxdelay = 0
    145. avgdelay = 0
    146. totaldelay = 0
    147.  
    148. lblmin = mindelay
    149. lblmax = maxdelay
    150. lblavg = avgdelay
    151.  
    152. Else
    153. lcount = lcount + 1
    154. Ptime = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “time”) + 5, InStr(1, txtoutput.Text, “ms “) - InStr(1, txtoutput.Text, “time”) - 5))
    155. pbyte = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “bytes=”) + 6, InStr(1, txtoutput.Text, ” time”) - InStr(1, txtoutput.Text, “bytes=”) - 6))
    156. pttl = CInt(Mid(pingresult, InStr(1, pingresult, “TTL=”) + 4, Len(pingresult) - InStr(1, pingresult, “TTL=”) - 5))
    157.  
    158. tmin = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “Minimum = “) + 10, InStr(InStr(1, txtoutput.Text, “Minimum = “), txtoutput.Text, “ms,”) - InStr(1, txtoutput.Text, “Minimum = “) - 10))
    159. tmax = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “Maximum = “) + 10, InStr(InStr(1, txtoutput.Text, “Maximum = “), txtoutput.Text, “ms,”) - InStr(1, txtoutput.Text, “Maximum = “) - 10))
    160. tavg = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “Average = “) + 10, InStr(InStr(1, txtoutput.Text, “Average = “), txtoutput.Text, “ms”) - InStr(1, txtoutput.Text, “Average = “) - 10))
    161.  
    162. If mindelay = 0 Then mindelay = tmin
    163.  
    164. If tmin < mindelay Then
    165. mindelay = tmin
    166. End If
    167. If tmax > maxdelay Then
    168. maxdelay = tmax
    169. End If
    170. totaldelay = totaldelay + tavg
    171. avgdelay = CInt(totaldelay / lcount)
    172.  
    173. lblmin = mindelay
    174. lblmax = maxdelay
    175. lblavg = avgdelay
    176.  
    177. If avgdelay > 0 Then
    178. For Each ctrl In frmmain
    179. If TypeOf ctrl Is ProgressBar Then
    180. ctrl.Max = avgdelay * 10
    181. End If
    182. Next
    183. End If
    184.  
    185.  
    186.  
    187. pingresult = “Reply from ” & txtIP.Text & “: bytes=” & pbyte & ” time=” & Ptime & “ms TTL=” & pttl
    188. txtpinglog.Text = “”
    189. For i = 0 To 22
    190. pingMessage(i) = pingMessage(i + 1)
    191. If pingMessage(i + 1) <> “” Then
    192. If txtpinglog.Text <> “” Then
    193. txtpinglog.Text = txtpinglog.Text & vbCrLf
    194. End If
    195. txtpinglog.Text = txtpinglog.Text & pingMessage(i + 1)
    196. End If
    197. Next
    198. pingMessage(23) = pingresult
    199. If txtpinglog.Text <> “” Then
    200. txtpinglog.Text = txtpinglog.Text & vbCrLf
    201. End If
    202. txtpinglog.Text = txtpinglog.Text & pingresult
    203.  
    204.  
    205.  
    206. ‘loging
    207. If chklog.Value = 1 Then
    208. If errorflag = True Then
    209. errorflag = False
    210. Open “c:\pinglog.txt” For Append As #2
    211. Print #2, Now
    212. Print #2, “Reconnected with ” & txtIP.Text
    213. Print #2, String(91, “*”)
    214. Close #2
    215. End If
    216. End If
    217.  
    218.  
    219. On Error Resume Next
    220. Ptime = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “time=”) + 5, InStr(1, txtoutput.Text, “ms “) - InStr(1, txtoutput.Text, “time=”) - 5))
    221. For i = 0 To 31
    222. pbrtime(i).Value = pbrtime(i + 1).Value
    223. Next
    224. pbrtime(32).Value = Ptime
    225.  
    226. End If
    227. Close #1
    228. End If
    229. Else
    230. frmmain.MousePointer = 0
    231. VarX = MsgBox(”You have not entered an ip address or the number of times you want to ping.”, vbCritical, “Error has occured”)
    232. End If
    233. Wend
    234. End Sub
    235. Private Sub Command1_Click()
    236. Load frmAbout
    237. frmAbout.Show 1
    238. End Sub
    239. Private Sub Form_Load()
    240. errorflag = False
    241. totaldelay = 0
    242. mindelay = 0
    243. maxdelay = 0
    244. avgdelay = 0
    245. lcount = 0
    246. Open “C:\log.txt” For Output As #1
    247. Close #1
    248. End Sub
    249. Private Sub SelectText(ByRef textObj As RichTextBox)
    250. textObj.SelStart = 0
    251. textObj.SelLength = Len(textObj)
    252. End Sub
    253. Private Sub Label6_Click()
    254. End Sub
    255. Private Sub Form_Unload(Cancel As Integer)
    256. End
    257. End Sub
    258. Private Sub Label2_Click()
    259. End Sub
    260. Private Sub Slider1_Change()
    261. Select Case Slider1.Value
    262. Case 0: txtbuffer.Text = 1000
    263. Case 1: txtbuffer.Text = 2000
    264. Case 2: txtbuffer.Text = 3000
    265. Case 3: txtbuffer.Text = 4000
    266. End Select
    267.  
    268. lcount = 0
    269. mindelay = 0
    270. maxdelay = 0
    271. avgdelay = 0
    272. totaldelay = 0
    273.  
    274. lblmin = mindelay
    275. lblmax = maxdelay
    276. lblavg = avgdelay
    277.  
    278. End Sub
    279. Private Sub Timer1_Timer()
    280. End Sub
    281. Private Sub txtIP_GotFocus()
    282. Call SelectText(txtIP)
    283. End Sub
    284. Private Sub txtOutput_GotFocus()
    285. ‘ Call SelectText(txtoutput)
    286. End Sub
    287. Private Sub txtStatus_Click()
    288. txtIP.SetFocus
    289. End Sub

    regards
    Last edited by Hack; Jun 30th, 2008 at 01:07 PM.

  2. #2
    PowerPoster
    Join Date
    Mar 2005
    Posts
    2,943

    Re: Ping Network

    Quote Originally Posted by hemlet
    Nite,

    I'm junior VB programmer from Indonesia.

    Ping network, code:

    Ping Network
    vb Code:
    1. Option Explicit
    2. Const SYNCHRONIZE = &H100000
    3. Const INFINITE = &HFFFF
    4. Const WAIT_OBJECT_0 = 0
    5. Const WAIT_TIMEOUT = &H102
    6. Dim stopflag As Boolean
    7. Dim errorflag As Boolean
    8. Dim mindelay As Integer
    9. Dim maxdelay As Integer
    10. Dim totaldelay As Long
    11. Dim avgdelay As Integer
    12. Dim lcount As Long
    13. Dim pingMessage(26) As String
    14. Dim ctrl
    15. Private Declare Function SendMessage Lib “User32″ Alias “SendMessageA” (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
    16. Private Declare Function OpenProcess Lib “kernel32″ (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
    17. Private Declare Function WaitForSingleObject Lib “kernel32″ (ByVal hHandle As Long, ByVal dwMilliseconds As Long) As Long
    18. Private Declare Function CloseHandle Lib “kernel32″ (ByVal hObject As Long) As Long
    19. Private Sub cmdClear_Click()
    20. Open “C:\log.txt” For Output As #1
    21. Close #1
    22. txtoutput.Text = “”
    23. txtpinglog.Text = “”
    24. End Sub
    25. Private Sub chklog_Click()
    26. End Sub
    27. Private Sub cmdExit_Click()
    28. Unload Me
    29. End
    30. End Sub
    31. Private Sub cmdlog_Click()
    32. Load frmlog
    33. frmlog.Show 1
    34. End Sub
    35. Private Sub cmdPing_Click()
    36. DoEvents
    37. If cmdPing.Caption = “Ping” Then
    38. lblstatus.Caption = “Pinging ” & txtIP.Text & ” with ” & txtbuffer.Text & “KB of data”
    39. txtIP.Locked = True
    40. cmdPing.BackColor = &HFF&
    41. cmdlog.Enabled = False
    42. cmdPing.Caption = “Stop”
    43. stopflag = False
    44. Else
    45. stopflag = True
    46. cmdPing.Caption = “Ping”
    47. txtIP.Locked = False
    48. cmdPing.BackColor = &H80FF80
    49. cmdlog.Enabled = True
    50. lblstatus.Caption = “Stopped”
    51. End If
    52.  
    53. While stopflag = False
    54. DoEvents
    55.  
    56. Dim ShellX As String
    57. Dim lPid As Long
    58. Dim lHnd As Long
    59. Dim lRet As Long
    60. Dim VarX As String
    61. Dim Ptime As Integer
    62. Dim pttl As Integer
    63. Dim pbyte As Integer
    64. Dim i As Integer
    65. Dim pingresult As String
    66. Dim tmin As Integer
    67. Dim tmax As Integer
    68. Dim tavg As Integer
    69.  
    70. If txtIP.Text <> “” Then
    71. DoEvents
    72. ShellX = Shell(”command.com /c ping -n 1 -l ” & txtbuffer.Text & ” ” & txtIP.Text & ” > C:\log.txt”, vbHide)
    73. lPid = ShellX
    74. If lPid <> 0 Then
    75. lHnd = OpenProcess(SYNCHRONIZE, 0, lPid)
    76. If lHnd <> 0 Then
    77. lRet = WaitForSingleObject(lHnd, INFINITE)
    78. CloseHandle (lHnd)
    79. End If
    80.  
    81. frmmain.MousePointer = 0
    82. Open “C:\log.txt” For Input As #1
    83. txtoutput.Text = Input(LOF(1), 1)
    84.  
    85. pingresult = Trim(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “:”) + 1, Len(txtoutput.Text) - (InStr(1, txtoutput.Text, “:”) + Len(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “Ping “))))))
    86.  
    87. ‘check for error
    88. If InStr(1, pingresult, “Reply”) = 0 Then
    89. Dim message As String
    90. If InStr(1, pingresult, “Hardware”) <> 0 Then
    91. message = “HARDWARE FAULT”
    92. Else
    93. If InStr(1, pingresult, “Request”) <> 0 Then
    94. message = “Request time out”
    95. Else
    96. If InStr(1, pingresult, “Destination”) <> 0 Then
    97. message = “Destination Computer is not reachable”
    98. Else
    99. message = pingresult
    100. End If
    101.  
    102. End If
    103. End If
    104. pingresult = “ERROR with ” & txtIP.Text & “:” & message
    105.  
    106.  
    107. ‘pingmessage
    108. txtpinglog.Text = “”
    109. For i = 0 To 22
    110. pingMessage(i) = pingMessage(i + 1)
    111. If pingMessage(i + 1) <> “” Then
    112. If txtpinglog.Text <> “” Then
    113. txtpinglog.Text = txtpinglog.Text & vbCrLf
    114. End If
    115. txtpinglog.Text = txtpinglog.Text & pingMessage(i + 1)
    116. End If
    117. Next
    118.  
    119. pingMessage(23) = pingresult
    120. If txtpinglog.Text <> “” Then
    121. txtpinglog.Text = txtpinglog.Text & vbCrLf
    122. End If
    123. txtpinglog.Text = txtpinglog.Text & pingresult
    124. For i = 0 To 31
    125. pbrtime(i).Value = pbrtime(i + 1).Value
    126. Next
    127. pbrtime(32).Value = 0
    128.  
    129.  
    130.  
    131. ‘loging
    132. If chklog.Value = 1 Then
    133. If errorflag = False Then
    134. errorflag = True
    135. Open “c:\pinglog.txt” For Append As #2
    136. Print #2, Now
    137. Print #2, pingresult
    138. Print #2, String(91, “*”)
    139. Close #2
    140. End If
    141. End If
    142. lcount = 0
    143. mindelay = 0
    144. maxdelay = 0
    145. avgdelay = 0
    146. totaldelay = 0
    147.  
    148. lblmin = mindelay
    149. lblmax = maxdelay
    150. lblavg = avgdelay
    151.  
    152. Else
    153. lcount = lcount + 1
    154. Ptime = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “time”) + 5, InStr(1, txtoutput.Text, “ms “) - InStr(1, txtoutput.Text, “time”) - 5))
    155. pbyte = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “bytes=”) + 6, InStr(1, txtoutput.Text, ” time”) - InStr(1, txtoutput.Text, “bytes=”) - 6))
    156. pttl = CInt(Mid(pingresult, InStr(1, pingresult, “TTL=”) + 4, Len(pingresult) - InStr(1, pingresult, “TTL=”) - 5))
    157.  
    158. tmin = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “Minimum = “) + 10, InStr(InStr(1, txtoutput.Text, “Minimum = “), txtoutput.Text, “ms,”) - InStr(1, txtoutput.Text, “Minimum = “) - 10))
    159. tmax = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “Maximum = “) + 10, InStr(InStr(1, txtoutput.Text, “Maximum = “), txtoutput.Text, “ms,”) - InStr(1, txtoutput.Text, “Maximum = “) - 10))
    160. tavg = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “Average = “) + 10, InStr(InStr(1, txtoutput.Text, “Average = “), txtoutput.Text, “ms”) - InStr(1, txtoutput.Text, “Average = “) - 10))
    161.  
    162. If mindelay = 0 Then mindelay = tmin
    163.  
    164. If tmin < mindelay Then
    165. mindelay = tmin
    166. End If
    167. If tmax > maxdelay Then
    168. maxdelay = tmax
    169. End If
    170. totaldelay = totaldelay + tavg
    171. avgdelay = CInt(totaldelay / lcount)
    172.  
    173. lblmin = mindelay
    174. lblmax = maxdelay
    175. lblavg = avgdelay
    176.  
    177. If avgdelay > 0 Then
    178. For Each ctrl In frmmain
    179. If TypeOf ctrl Is ProgressBar Then
    180. ctrl.Max = avgdelay * 10
    181. End If
    182. Next
    183. End If
    184.  
    185.  
    186.  
    187. pingresult = “Reply from ” & txtIP.Text & “: bytes=” & pbyte & ” time=” & Ptime & “ms TTL=” & pttl
    188. txtpinglog.Text = “”
    189. For i = 0 To 22
    190. pingMessage(i) = pingMessage(i + 1)
    191. If pingMessage(i + 1) <> “” Then
    192. If txtpinglog.Text <> “” Then
    193. txtpinglog.Text = txtpinglog.Text & vbCrLf
    194. End If
    195. txtpinglog.Text = txtpinglog.Text & pingMessage(i + 1)
    196. End If
    197. Next
    198. pingMessage(23) = pingresult
    199. If txtpinglog.Text <> “” Then
    200. txtpinglog.Text = txtpinglog.Text & vbCrLf
    201. End If
    202. txtpinglog.Text = txtpinglog.Text & pingresult
    203.  
    204.  
    205.  
    206. ‘loging
    207. If chklog.Value = 1 Then
    208. If errorflag = True Then
    209. errorflag = False
    210. Open “c:\pinglog.txt” For Append As #2
    211. Print #2, Now
    212. Print #2, “Reconnected with ” & txtIP.Text
    213. Print #2, String(91, “*”)
    214. Close #2
    215. End If
    216. End If
    217.  
    218.  
    219. On Error Resume Next
    220. Ptime = CInt(Mid(txtoutput.Text, InStr(1, txtoutput.Text, “time=”) + 5, InStr(1, txtoutput.Text, “ms “) - InStr(1, txtoutput.Text, “time=”) - 5))
    221. For i = 0 To 31
    222. pbrtime(i).Value = pbrtime(i + 1).Value
    223. Next
    224. pbrtime(32).Value = Ptime
    225.  
    226. End If
    227. Close #1
    228. End If
    229. Else
    230. frmmain.MousePointer = 0
    231. VarX = MsgBox(”You have not entered an ip address or the number of times you want to ping.”, vbCritical, “Error has occured”)
    232. End If
    233. Wend
    234. End Sub
    235. Private Sub Command1_Click()
    236. Load frmAbout
    237. frmAbout.Show 1
    238. End Sub
    239. Private Sub Form_Load()
    240. errorflag = False
    241. totaldelay = 0
    242. mindelay = 0
    243. maxdelay = 0
    244. avgdelay = 0
    245. lcount = 0
    246. Open “C:\log.txt” For Output As #1
    247. Close #1
    248. End Sub
    249. Private Sub SelectText(ByRef textObj As RichTextBox)
    250. textObj.SelStart = 0
    251. textObj.SelLength = Len(textObj)
    252. End Sub
    253. Private Sub Label6_Click()
    254. End Sub
    255. Private Sub Form_Unload(Cancel As Integer)
    256. End
    257. End Sub
    258. Private Sub Label2_Click()
    259. End Sub
    260. Private Sub Slider1_Change()
    261. Select Case Slider1.Value
    262. Case 0: txtbuffer.Text = 1000
    263. Case 1: txtbuffer.Text = 2000
    264. Case 2: txtbuffer.Text = 3000
    265. Case 3: txtbuffer.Text = 4000
    266. End Select
    267.  
    268. lcount = 0
    269. mindelay = 0
    270. maxdelay = 0
    271. avgdelay = 0
    272. totaldelay = 0
    273.  
    274. lblmin = mindelay
    275. lblmax = maxdelay
    276. lblavg = avgdelay
    277.  
    278. End Sub
    279. Private Sub Timer1_Timer()
    280. End Sub
    281. Private Sub txtIP_GotFocus()
    282. Call SelectText(txtIP)
    283. End Sub
    284. Private Sub txtOutput_GotFocus()
    285. ‘ Call SelectText(txtoutput)
    286. End Sub
    287. Private Sub txtStatus_Click()
    288. txtIP.SetFocus
    289. End Sub

    regards
    hI friend have the complete project?
    If yes can you send me...
    Tks from Italy.
    Sal.

    gss_dot_italy_at_iol_dot_it

  3. #3

    Thread Starter
    New Member
    Join Date
    Jun 2008
    Posts
    8

    Smile Re: Ping Network

    Perhaps later, downloading in my url

  4. #4
    PowerPoster
    Join Date
    Mar 2005
    Posts
    2,943

    Re: Ping Network

    Quote Originally Posted by hemlet
    Perhaps later, downloading in my url
    OK, TKS!

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