using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using CrystalDecisions.CrystalReports.Engine; using CrystalDecisions.Shared; using System.Data.SqlClient; namespace WindowsFormsApplication1 { public partial class payment_w_opb : Form { public payment_w_opb() { InitializeComponent(); } private void crystalReportViewer1_Load(object sender, EventArgs e) { } private void payment_w_opb_Load(object sender, EventArgs e) { ReportDocument cryRpt = new ReportDocument(); cryRpt.Load(@"D:\Completing\WindowsFormsApplication1\CrystalReport23.rpt"); crystalReportViewer1.ReportSource = cryRpt; crystalReportViewer1.Refresh(); } private void CrystalReport241_InitReport(object sender, EventArgs e) { } } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)