Exemplo n.º 1
0
        private void menuFixoControle_Click(object sender, EventArgs e)
        {
            staticVariavel = this;
            this.Hide();
            Form controle = new formControle();

            controle.ShowDialog(this);
        }
Exemplo n.º 2
0
        private void menuFixoPesquisar_Click(object sender, EventArgs e)
        {
            staticVariavel = this;
            this.Hide();
            Form pesquisar = new formPesquisar();

            pesquisar.ShowDialog(this);
        }
Exemplo n.º 3
0
        private void menuFixoRelatorio_Click(object sender, EventArgs e)
        {
            staticVariavel = this;
            this.Hide();
            Form relatorio = new formRelatorio();

            relatorio.ShowDialog(this);
        }
Exemplo n.º 4
0
        private void menuFixoNovo_Click(object sender, EventArgs e)
        {
            staticVariavel = this;
            this.Hide();
            Form novo = new formNovo();

            novo.ShowDialog(this);
        }