Exemplo n.º 1
0
        public void Activate()
        {
            ProtocolForm f = new ProtocolForm();
            f.FormClosing += new System.Windows.Forms.FormClosingEventHandler(f_FormClosing);

            lock (forms)
            {
                forms.Add(f);
            }

            f.Show();
        }
Exemplo n.º 2
0
        public void Activate()
        {
            ProtocolForm f = new ProtocolForm();

            f.FormClosing += new System.Windows.Forms.FormClosingEventHandler(f_FormClosing);

            lock (forms)
            {
                forms.Add(f);
            }

            f.Show();
        }