/// <summary>
        /// Function to fill VoucherType combobox
        /// </summary>
        public void VoucherTypeComboFill()
        {
            RejectionInMasterSP spRejectionInMaster = new RejectionInMasterSP();

            try
            {
                spRejectionInMaster.VoucherTypeSelectionFill(cmbVoucherType, "Rejection In", true);
            }
            catch (Exception ex)
            {
                formMDI.infoError.ErrorString = "RIReport6:" + ex.Message;
            }
        }
Exemple #2
0
        /// <summary>
        /// Function to fill VoucherType combobox
        /// </summary>
        public void VoucherTypeComboFill()
        {
            RejectionInMasterSP spRejectionInMaster = new RejectionInMasterSP();

            try
            {
                spRejectionInMaster.VoucherTypeSelectionFill(cmbVoucherType, "Rejection In", true);
            }
            catch (Exception ex)
            {
                MessageBox.Show("RIReport:05" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
 /// <summary>
 /// Function to fill VoucherType combobox
 /// </summary>
 public void VoucherTypeComboFill()
 {
     RejectionInMasterSP spRejectionInMaster = new RejectionInMasterSP();
     try
     {
         spRejectionInMaster.VoucherTypeSelectionFill(cmbVoucherType, "Rejection In", true);
     }
     catch (Exception ex)
     {
         MessageBox.Show("RIReport:05" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }