Ejemplo n.º 1
0
        private void AddVendorPaymentBtn_Click(object sender, EventArgs e)
        {
            AddVendorPayment aAddVendorPayment = new AddVendorPayment();

            // aAddVendorPayment.MdiParent = Helper.Instance.ActiveMainWindow;
            aAddVendorPayment.Show();
        }
Ejemplo n.º 2
0
        private void addVendorPaymentToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AddVendorPayment aAddVendorPayment = new AddVendorPayment();

            //  aAddVendorPayment.MdiParent = Helper.Instance.ActiveMainWindow;
            aAddVendorPayment.Show();
            aAddVendorPayment.WindowState = FormWindowState.Normal;
        }
Ejemplo n.º 3
0
 private void AddVendorPaymentRibnBtn_Click(object sender, EventArgs e)
 {
     if (PrivilegesManager.GetEventStatues(Calcium_RMS.Events.AddVendorPayment) == EventStatus.Permit)
     {
         AddVendorPayment aAddVendorPayment = new AddVendorPayment();
         __AddTabPage(aAddVendorPayment, __VendorsColor);
     }
     else
     {
         MessageBox.Show(MsgTxt.PrivUserNotAllowedTxt, MsgTxt.InformationCaption, MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }