//adicionar cliente
        private void button5_Click(object sender, EventArgs e)
        {
            AddCliente add = new AddCliente();

            this.Hide();
            add.Show();
        }
示例#2
0
        //botao adicionar cliente
        private void button5_Click(object sender, EventArgs e)
        {
            MessageBox.Show("Cliente adicionado com sucesso!");
            AddCliente addcliente = new AddCliente();

            this.Hide();
            addcliente.Show();
        }