Esempio n. 1
0
        private void btn_security_Click(object sender, EventArgs e)
        {
            if (Program.appSetting.tagGroup.selected != CSLibrary.Constants.Selected.ALL)
            {
                MessageBox.Show("Warning : MASK IS SET !!!");
            }

            this.Hide();
            using (TagSecurityForm security = new TagSecurityForm())
            {
                security.TargetEPC = TargetEPC;
                security.ShowDialog();
            }
            UpdatePower();
            this.Show();
        }
 private void btn_security_Click(object sender, EventArgs e)
 {
     this.Hide();
     using (TagSecurityForm security = new TagSecurityForm())
     {
         security.TargetEPC = TargetEPC;
         security.ShowDialog();
     }
     UpdatePower();
     this.Show();
 }