/// <summary>
        /// Function to fill DeliveryNote No combobox
        /// </summary>
        public void DeliveryNoteComboFill()
        {
            decimal decLedgerId = 0;
            RejectionInBll bllRejectionIn = new RejectionInBll();
            //RejectionInMasterSP spRejectionInMaster = new RejectionInMasterSP();
            try
            {
                bllRejectionIn.DeliveryNoteNoComboFillToLedger(cmbDeliveryNoteNo, decLedgerId, true);

            }
            catch (Exception ex)
            {
                MessageBox.Show("RIReport:06" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }