/// <summary> /// Function to fill DeliveryNote No combobox /// </summary> public void DeliveryNoteComboFill() { decimal decLedgerId = 0; RejectionInMasterSP spRejectionInMaster = new RejectionInMasterSP(); try { spRejectionInMaster.DeliveryNoteNoComboFillToLedger(cmbDeliveryNoteNo, decLedgerId, true); } catch (Exception ex) { formMDI.infoError.ErrorString = "RIReport7:" + ex.Message; } }
/// <summary> /// Function to fill DeliveryNote No combobox /// </summary> public void DeliveryNoteComboFill() { decimal decLedgerId = 0; RejectionInMasterSP spRejectionInMaster = new RejectionInMasterSP(); try { spRejectionInMaster.DeliveryNoteNoComboFillToLedger(cmbDeliveryNoteNo, decLedgerId, true); } catch (Exception ex) { MessageBox.Show("RIReport:06" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }