Exemple #1
0
        private void toolStripButtonClients_Click(object sender, EventArgs e)
        {
            FormClient frmCli = new FormClient();

            frmCli.MdiParent = this;
            frmCli.Show();
        }
        private void RemoveQueueB()
        {
            labelB1.Text = Display.mQueue2.Next().ToString();

            FormClient fc = (FormClient)Application.OpenForms["FormClient"];

            if (fc != null)
            {
                fc.SetCounterB();
            }

            Display.mQueue2.Remove();

            labelTotalB.Text = Display.mQueue2.Total().ToString();

            PlaySound.OnePing();

            Voice.HelloVoice(labelB1.Text);
        }