-
Is it possible to have to WinSock Controls to transmit on the same form, with different portnumbers???
Is it also possible to have a WinSock App to both recieve and transmit?? I can't get it to work....
[Edited by CyberCarsten on 08-26-2000 at 05:04 AM]
-
You can have as many Winsock controls in one form provided
that the port numbers are not the same.
If you use two winsock with the same port number, it will
give you a "Address in use" error.
If you want to have two or more clients using one port
and one winsock control, you'll have to indexed the
winsock control...
hope this helps...
-
yes, a single winsock can transmit at the same time
receive an incoming data in a given port.
but first, you'll have to figure what kind of
protocol to use. TCP or UDP.
-