コード例 #1
0
        public void LoadSelectedForm()
        {
            frmShopAdjustment shopAdjustment = new frmShopAdjustment
            {
                FormMode = "Old"
            };

            shopAdjustment.TxtSID.Text = ID.ToString();
            shopAdjustment.Show();
        }
コード例 #2
0
        public void LoadNewForm()
        {
            frmShopAdjustment shopAdjustment = new frmShopAdjustment
            {
                FormMode     = "New",
                LoggedInUser = UserID
            };

            shopAdjustment.Show();
        }