Exemple #1
0
        private void demarrerInterfaceImprimante(int portImprimante)
        {
            indicateurImprimante.BackColor = Color.Orange;
            labelPortImprimante.Text       = portImprimante.ToString();

            if (_interfaceImprimante.IsRunning())
            {
                _interfaceImprimante.StopModule();
            }

            _interfaceImprimante = new ModuleServeur(this);
            _interfaceImprimante.StartServer(_adresse, portImprimante);
            indicateurImprimante.BackColor = Color.Green;
        }
Exemple #2
0
 private void button1_Click(object sender, EventArgs e)
 {
     moduleServeur = new ModuleServeur(this);
     moduleServeur.StartServer(IPAddress.Parse("192.168.1.12"), 8888);
 }