Beispiel #1
0
        private void ListItems_Click(object sender, EventArgs e)
        {
            ListItems aListItem = new ListItems();

            aListItem.Show();
            aListItem.MdiParent = this;
            UpdateMain();
        }
Beispiel #2
0
 private void ListItemsRibnBtn_Click(object sender, EventArgs e)
 {
     if (PrivilegesManager.GetEventStatues(Calcium_RMS.Events.ListItems) == EventStatus.Permit)
     {
         ListItems aListItems = new ListItems();
         __AddTabPage(aListItems, __InventoryColor);
     }
     else
     {
         MessageBox.Show(MsgTxt.PrivUserNotAllowedTxt, MsgTxt.InformationCaption, MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
Beispiel #3
0
 private void ListItems_Click(object sender, EventArgs e)
 {
     if (PrivilegesManager.GetEventStatues(Calcium_RMS.Events.ListItems) == EventStatus.Permit)
     {
         ListItems aListItem = new ListItems();
         aListItem.Show();
         // aListItem.MdiParent = Helper.Instance.ActiveMainWindow;
     }
     else
     {
         MessageBox.Show(MsgTxt.PrivUserNotAllowedTxt, MsgTxt.InformationCaption, MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }