using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using BhavansFMS.Cancel_ReportTableAdapters; namespace BhavansFMS { public partial class Cancel_Admission_Report : Form { public Cancel_Admission_Report() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Cancel_Admission_Report car = new Cancel_Admission_Report(); Cancel_Report ds = new Cancel_Report(); CANCEL_STUDENT_RECORDSTableAdapter ctr = new CANCEL_STUDENT_RECORDSTableAdapter(); ctr.Fill(ds.CANCEL_STUDENT_RECORDS); car.SetDataSource(ds); crystalReportViewer1.ReportSource = car; } private void SetDataSource(Cancel_Report ds) { throw new NotImplementedException();(The method or operation is not implemented.) } } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)