コード例 #1
0
ファイル: Inventory.cs プロジェクト: arjaytigerace/SoftEng
        private void button10_Click(object sender, EventArgs e)
        {
            stockin stockIn = new stockin();

            stockIn.main    = this;
            stockIn.Adminid = this.Adminid;
            if (appitemname == "")
            {
                stockIn.Tabindex = 2;
            }
            else
            {
                stockIn.Tabindex = 0;
                stockIn.Itemname = appitemname;
            }
            stockIn.Show();
        }
コード例 #2
0
ファイル: Inventory.cs プロジェクト: arjaytigerace/SoftEng
        private void chemstock_Click(object sender, EventArgs e)
        {
            stockin stockIn = new stockin();

            stockIn.main    = this;
            stockIn.Adminid = this.Adminid;
            if (chemitemname == "")
            {
                stockIn.Tabindex = 3;
            }
            else
            {
                stockIn.Tabindex = 0;
                stockIn.Itemname = chemitemname;
            }
            stockIn.Show();
        }
コード例 #3
0
ファイル: Inventory.cs プロジェクト: arjaytigerace/SoftEng
        private void addequipb_Click(object sender, EventArgs e)
        {
            stockin stockIn = new stockin();

            stockIn.main    = this;
            stockIn.Adminid = this.Adminid;
            if (equipitemname == "")
            {
                stockIn.Tabindex = 1;
            }
            else
            {
                stockIn.Tabindex = 0;
                stockIn.Itemname = equipitemname;
            }
            stockIn.Show();
        }