I'm using winsock to send data between 2 pcs, but if I close the program the process remains in the memory. I suppose there is a problem closing the connection/port. The program does shutdown correctly without the ".bind", but I need that in my program.
VB Code:
Winsock1.Protocol = sckUDPProtocol Winsock1.Bind 1000 ' ...OTHER CODE... Winsock1.Close Winsock1.Localport = 0
