Esempio n. 1
0
        private void ConfigToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Configuration.ConfigurationsList form = new Configuration.ConfigurationsList();
            bool allowed = Compas.Logic.Security.CurrentSecurityContext.Principal.OpperationAllowed(form.Name);

            if (allowed == true)
            {
                form.MdiParent = this;
                form.Show();
            }
            else
            {
                MessageBox.Show("Дія заборонена. Зверніться до адміністратора.");
            }
        }
Esempio n. 2
0
        private void ConfigToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Configuration.ConfigurationsList form = new Configuration.ConfigurationsList();
            bool allowed = Compas.Logic.Security.CurrentSecurityContext.Principal.OpperationAllowed(form.Name);

            if (allowed == true)
            {

                form.MdiParent = this;
                form.Show();
            }
            else
            {
                MessageBox.Show("Дія заборонена. Зверніться до адміністратора.");

            }
        }