bpmccall 0 Newbie Poster

I have created two ActiveX EXEs, one is the client, the other is the server. I want to set up a system where a single server class handles the method calls of multiple instances of the clients. The problem is, the only way I know how to create a reference from the server in the client is [inline code]echo "Dim myServer as ServerLib.ServerClassName"[/inline code]. Using this technique and opening multiple instances of the client EXE, I end up with multiple instances of the server class as well, when all I want is one instance of hte server class. How do I do this?