Skip to main content

Posts

Showing posts with the label crystal Reports

Sample Crystal Report Generation

Sample Crystal Report Generation using System.Data.SqlClient; using CrystalDecisions.CrystalReports.Engine; using CrystalDecisions.Shared; public partial class SimpleCrystal2 : System.Web.UI.Page {     protected void Page_Load(object sender, EventArgs e)     {            }     protected void Button1_Click(object sender, EventArgs e)     {         Hospitals_dbo obj = new Hospitals_dbo(false);         //SqlConnection con = new SqlConnection("Server='10.0.0.10';Initial Catalog='sample.DB';user id='user';password='password'");         //con.Open();         ReportDocument rptdoc = new ReportDocument();         DataSetCrystal ds = new DataSetCrystal(); //XSD dataset Sample data Table from the comm...