private void cmdRendirFacturas_Click(object sender, EventArgs e)
        {
            RendicionForm frm = new RendicionForm();

            frm.Show();
            //this.Enabled = false;
        }
示例#2
0
        private void rendicionToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var rendicionForm = new RendicionForm();

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