示例#1
0
        private void cadastrarClienteToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            FmrCliente cli = new FmrCliente();

            cli.ShowDialog();
            this.Visible = true;
        }
        private void pesquisarToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            FmrCliente fmrCliente = new FmrCliente();

            fmrCliente.ShowDialog();

            this.Visible = true;
        }
示例#3
0
        private void pesquisarToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FmrCliente fmrCliente = new FmrCliente();

            fmrCliente.ShowDialog();
        }