コード例 #1
0
ファイル: Main.cs プロジェクト: anthonied/LiquidPastel
 //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;
 }
コード例 #2
0
ファイル: StockIssue.cs プロジェクト: anthonied/LiquidPastel
 private void btnNewStockIssue_Click(object sender, EventArgs e)
 {
     StockIssue siNew = new StockIssue();
     siNew.MdiParent = this.MdiParent;
     siNew.Show();
     this.Close();
 }