Beispiel #1
0
 public ClientMW()
 {
     netServ = new NetworkServices(this);
     fTP = new fileTransferProtocol(this);
     prvConversations = new List<privateConversation>();
     InitializeComponent();
 }
Beispiel #2
0
 public ClientMW()
 {
     netServ          = new NetworkServices(this);
     fTP              = new fileTransferProtocol(this);
     prvConversations = new List <privateConversation>();
     InitializeComponent();
 }
Beispiel #3
0
 public privateConversation(string withWho, ClientMW clientMW, NetworkServices netServ)
 {
     this.withWho  = withWho;
     this.clientMW = clientMW;
     this.netServ  = netServ;
     InitializeComponent();
     appendText("Private conversation with " + withWho + ".");
 }
 public privateConversation(string withWho, ClientMW clientMW, NetworkServices netServ)
 {
     this.withWho = withWho;
     this.clientMW = clientMW;
     this.netServ = netServ;
     InitializeComponent();
     appendText("Private conversation with " + withWho + ".");
 }
        public DatabaseServices(NetworkServices netServ)
        {
            this.netServ = netServ;

            myConnection = new SqlCeConnection(@"Data Source = |DataDirectory|\database.sdf");
            try
            {
                myConnection.Open();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }
        }
 public ServerToClientBridge(NetworkServices netServ)
 {
     this.netServ = netServ;
 }
Beispiel #7
0
 public ServerToClientBridge(NetworkServices netServ)
 {
     this.netServ = netServ;
 }