示例#1
0
        //QS SECURITY RULE MANAGER DIALOG
        private void securityRuleManagerToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SecurityRuleForm SecurityRuleForm = new SecurityRuleForm(this);

            this.Hide();
            SecurityRuleForm.ShowDialog();
        }
示例#2
0
        /*============================= BUTTON BASED ================================*/
        //QS SECURITY RULE MANAGER DIALOG
        private void btnSecurtiyRules_Click(object sender, EventArgs e)
        {
            SecurityRuleForm SecurityRuleForm = new SecurityRuleForm(this);

            this.Hide();
            SecurityRuleForm.ShowDialog();
        }