예제 #1
0
 private void abrirPeriodoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try{
         FrmRegistraPeriodo childForm = new FrmRegistraPeriodo();
         childForm.MdiParent = this;
         //childForm.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
         childForm.Show();
     }
     catch (Exception ex)
     {
         showMessage(ex.Message);
     }
 }
예제 #2
0
 private void abrirPeriodoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     try{
     FrmRegistraPeriodo childForm = new FrmRegistraPeriodo();
     childForm.MdiParent = this;
     //childForm.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     childForm.Show();
     }
     catch (Exception ex)
     {
         showMessage(ex.Message);
     }
 }
예제 #3
0
 private void OP_ABRIRPERIODO(object sender, EventArgs e)
 {
     try{
         FrmRegistraPeriodo childForm = new FrmRegistraPeriodo(_Session);
         childForm.MdiParent = this;
         childForm.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
         childForm.Show();
     }
     catch (Exception ex)
     {
         showMessage(ex.Message);
     }
 }