/// <summary>
 /// Its for using Crystal report printing
 /// </summary>
 /// <param name="decContraMasterId"></param>
 public void Print(decimal decContraMasterId)
 {
     try
     {
         //ContraMasterSP spContraMaster = new ContraMasterSP();
         ContraVoucherDetailsBll bllContraVoucherDetails = new ContraVoucherDetailsBll();
         DataSet dsContraVoucher = bllContraVoucherDetails.ContraVoucherPrinting(decContraMasterId, 1);
         frmReport frmReport = new frmReport();
         frmReport.MdiParent = formMDI.MDIObj;
         frmReport.ContraVoucherPrinting(dsContraVoucher);
     }
     catch (Exception ex)
     {
         MessageBox.Show("CV:26" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }