Hi all , here's my code
I added Winsock control to visual studio 2010 so i can use it on vb,
i connected sro on srproxy with localhost:9000
i tried some hextostring commands or tried some byte arrays but i couldn't be successfull.
So I hope someone will help me ..
Code:
Public Class Form1
Private Sub AxWinsock1_ConnectEvent(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Winsock1.ConnectEvent
Me.Text = "Connected to bot"
MsgBox("Connection Successful")
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Winsock1.RemoteHost = "localhost"
Winsock1.RemotePort = "9000"
Winsock1.Connect()
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim pckt as Object = "03 80 57 4B 7D A5 56 51 94 49"
Winsock1.SendData(pckt)
End Sub
End Class
i connected sro on srproxy with localhost:9000
i tried some hextostring commands or tried some byte arrays but i couldn't be successfull.
So I hope someone will help me ..