Exemple #1
0
        private void btnGenerarLlamada_Click(object sender, EventArgs e)
        {
            frmLlamador llamador = new frmLlamador(this.central);

            llamador.ShowDialog();

            if (llamador.DialogResult == DialogResult.OK)
            {
                this.central = llamador.Central;
            }
        }
Exemple #2
0
        private void buttonGrarLlamada_Click(object sender, EventArgs e)
        {
            frmLlamador llamador = new frmLlamador(centralita);

            llamador.Show();
        }