//adicionar cliente private void button5_Click(object sender, EventArgs e) { AddCliente add = new AddCliente(); this.Hide(); add.Show(); }
//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(); }