示例#1
0
        private void button2_Click(object sender, EventArgs e)
        {
            this.Hide();
            inventory f2 = new inventory(label5.Text);

            f2.ShowDialog();
        }
示例#2
0
        private void inventoryToolStripMenuItem_Click(object sender, EventArgs e)
        {
            // פותח פורם של מלאי
            this.Hide();
            inventory f2 = new inventory(label5.Text);

            f2.ShowDialog();
        }
示例#3
0
        private void button4_Click(object sender, EventArgs e)
        {
            // פותח פורם חדש וסוגר את הנוכחי
            this.Hide();
            inventory f2 = new inventory(label2.Text);

            f2.ShowDialog();
            this.Close();
        }
示例#4
0
        private void button_back_Click(object sender, EventArgs e)
        {
            // חוזר אחורה וסוגר את הדף הנוכחי
            this.Hide();
            inventory f3 = new inventory(label6.Text);

            f3.ShowDialog();
            this.Close();
        }
示例#5
0
文件: inventory.cs 项目: neoml/print
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     inventory rpt = new inventory();
     rpt.Site = this.Site;
     return rpt;
 }