-
Im working on a TCP/IP program and i load winsock for every connection in a control array...when a person disconnects i unload it
statements i use for loading
Load tcpServer(intMax)
statements i use for unloading
Unload tcpServer(index)
How can i check which controls have been unloaded during the run time?
-
hi, I had the same problem, and i did not know how to solve it, but now i use another array, and when ever i unload some object, i add the name of it in that array, and check the array if i need to know which objects i'v unloaded.