コード例 #1
0
        private void btnRegresar_Click(object sender, EventArgs e)
        {
            RegistroHoras RHoras = new RegistroHoras();

            RHoras.Show();//abriendo el formulario principal
            this.Hide();
        }
コード例 #2
0
        public Home()
        {
            InitializeComponent();

            frmHoras           = new RegistroHoras();
            frmHoras.MdiParent = this;

            frmPersonal           = new RegistroPersonal();
            frmPersonal.MdiParent = this;

            frmUsuarios           = new RegistroUsuarios();
            frmUsuarios.MdiParent = this;
        }