private void clienteToolStripMenuItem_Click(object sender, EventArgs e) { if (frmCadastroCliente == null) { frmCadastroCliente = new frmCadastroCliente(); frmCadastroCliente.ShowDialog(); } }
private void cLIENTESToolStripMenuItem_Click(object sender, EventArgs e) { frmCadastroCliente cliente = new frmCadastroCliente(); cliente.ShowDialog(); }
private void btnCadastrar_Click(object sender, EventArgs e) { frmCadastroCliente frmCadastro = new frmCadastroCliente(); frmCadastro.ShowDialog(); }