Hi guys
Here i am again with the same question like last time, just the last time that was a project in AutoIt.
I decided to learn VB becouse it look very easy. I have already learned some basic things, thanks to YouTube and the guy called "TeachMeComputer". I watched all 50+ of his tutorials, so for now i just know some basic things.
For now, i make the connection to srProxy
Now the question is how do I send packets ? :)
Thanks in advance, cheers ! :D
Here i am again with the same question like last time, just the last time that was a project in AutoIt.
I decided to learn VB becouse it look very easy. I have already learned some basic things, thanks to YouTube and the guy called "TeachMeComputer". I watched all 50+ of his tutorials, so for now i just know some basic things.
For now, i make the connection to srProxy
Code:
Imports System.Net.Sockets
Imports System.Text
Public Class Form1
Dim clientSocket As New System.Net.Sockets.TcpClient()
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
clientSocket.Connect("127.0.0.1", 9000)
If clientSocket.Connected Then
Label2.Text = "Connected"
End If
End Sub
Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
End Class
Thanks in advance, cheers ! :D