Click here to Skip to main content
15,868,340 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
VB
Private Sub frm_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load

11:     m_SckServer = ConnectSocket("192.168.1.175", 3001)

    End Sub
    Private Function ConnectSocket(server As String, port As Integer) As Socket
        Dim s As Socket = Nothing
        Dim hostEntry As IPHostEntry = Nothing



        Dim address As IPAddress = IPAddress.Parse(server)


        Dim endPoint As New IPEndPoint(address, port)
        Dim tempSocket As New Socket(endPoint.AddressFamily, SocketType.Dgram, ProtocolType.Udp)


        Dim PrtENDPoint As New IPEndPoint(address, port)


             tempSocket.Connect(endPoint)

        If tempSocket.Connected Then

            tempSocket.Bind(PrtENDPoint )

            s = tempSocket


        End If

              Return s
    End Function


When I Socket Bind with IP "192.168.1.175" It will Generated invalid Error



Actually i have 1 device so i have to set two port 
1 for sending data to that device 
2 for listing 

When i bind with that device it gave error

Soooo plz any 1 can help me 
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900