Ejemplo n.º 1
0
 //JR 13/6/2011
 private void stockIssueDocumentToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Cursor = System.Windows.Forms.Cursors.WaitCursor;
     Forms.Manufacturing.StockIssue frmStockIssue = new Forms.Manufacturing.StockIssue();
     frmStockIssue.MdiParent = this;
     frmStockIssue.Show();
     Cursor = System.Windows.Forms.Cursors.Default;
 }
Ejemplo n.º 2
0
 private void btnNewStockIssue_Click(object sender, EventArgs e)
 {
     StockIssue siNew = new StockIssue();
     siNew.MdiParent = this.MdiParent;
     siNew.Show();
     this.Close();
 }