Example #1
0
        private void ProcurarCliente_Click(object sender, EventArgs e)
        {
            FrmGerenciadorAgendamentos frmGerenciadorAgendamentos = new FrmGerenciadorAgendamentos(true);

            frmGerenciadorAgendamentos.ShowDialog();
            txtNome.Text     = frmGerenciadorAgendamentos.RetornarNomeCliente;
            txtEndereco.Text = frmGerenciadorAgendamentos.RetornarEnderecoCliente;
            txtTelefone.Text = frmGerenciadorAgendamentos.RetornarTelefoneCliente;
        }
Example #2
0
        private void consultarListaToolStripMenuItem3_Click(object sender, EventArgs e)
        {
            FrmGerenciadorAgendamentos frmGerenciadorAgendamentos = new FrmGerenciadorAgendamentos(false);

            frmGerenciadorAgendamentos.Show();
        }