PDA

Click to See Complete Forum and Search --> : Networks


death
Nov 29th, 1999, 05:56 AM
I've made a prog that seraches a network and if a client program is running on that machine then it turns a button green
The only problem is that it runnsso slow and crashes if I try to search more than about 5 computers
Here is the code

On Error Resume Next
For g = 100 To 104
Winsock1.RemoteHost = "Curriculum " & g
Winsock1.SendData "RUT"
cur(g - 100).BackColor = RGB(255, 0, 0)
Next g

Any help would be welcomed