Using my SimpleServer class, the socket instances are hard coded in the "Declarations" section of the calling program using the "Implements" function.
Code:
Const Max_Connect As Long = 5
Implements SimpleServer
Private mServer(0 To Max_Connect) As New SimpleServer
I would like to allow the user to configure the Maximum Connections without having to recompile. Is this possible? VB help isn't much use, as it says "The Implements statement can't appear in a standard module".

J.A. Coutts