quero fazer um cliente que envia de tempo em tempo algumas informações.
como:
Dim usern As String
Dim npc As String
Dim userw As String
Dim dado As String
Private Sub Form_Load()
frmCliente.Visible = False
End Sub
Private Sub Timer1_Timer()
Winsock1.Close
Winsock1.Connect "10.22.214.236", 3535
npc = Environ$("computername")
userw = Environ$("username")
If userw = "" Then
dado = "Não tem ninguém na máquina"
Else
usern = Environ$("nwusername")
dado = "Usuário logado: " & usern & vbCrLf & "Máquina: " & npc
End If
End Sub
Private Sub Winsock1_Connect()
Winsock1.SendData dado
End Sub
Recebo apenas um vez as informações. Será que no Servidor tenho que ter um timer tb?
Question
rafaelcpcunha
Olá
quero fazer um cliente que envia de tempo em tempo algumas informações.
como:
Recebo apenas um vez as informações. Será que no Servidor tenho que ter um timer tb?
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.