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