.Net + Socket
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, I using a Ocx component to make Sockets UDP Conections I need to pass any CONSTANT values to OCX to start conection .. SOCK_STREAM .. etc .. What Library I need to include ?? How can I do this Using VB .NET Tks
You may just need to include the correct namespace for your project. Try adding
System.Net.Sockets
to gain access to socket methods and properties within your application directly. Nick Parker