public frmPurchasePaymentReport(int SupplierPaymentID)
        {
            InitializeComponent();
            rptPurchasePayment rpt = new rptPurchasePayment();

            rpt.SetParameterValue("@SupplierPaymentID", SupplierPaymentID);
            crv.ReportSource = rpt;
        }