2

我正在使用 Crystal Report,但我现在有问题。我正在使用视觉工作室 2010。

    private void button1_Click(object sender, EventArgs e)
    {
        SqlCommand com = new SqlCommand("Select * from Students where StudentID='" + textBox1.Text + "'", conn);
        adap.SelectCommand = com;
        adap.Fill(tables);
        CrystalReport1 myreport = new CrystalReport1();
        myreport.SetDataSource(tables);
        crystalReportViewer1.ReportSource = myreport;
    }

我写了这段代码,但它不起作用。我的意思是 Crystal Report 向我展示了数据库中的所有学生。我只想要StudentID来自文本框的特定学生。但它曾经在另一个项目上工作过。我打开新项目一切都一样,但现在不起作用。

请帮我。

4

1 回答 1

2
   private void button1_Click(object sender, EventArgs e)
    {
        SqlCommand com = new SqlCommand("Select * from Students where StudentID='" + textBox1.Text + "'", conn);
        adap.SelectCommand = com;
        adap.Fill(tables);
        ReportDocument doc;
        CrystalReport1 myreport = new CrystalReport1();
        myreport.SetDataSource(tables);
        doc = new ReportDocument();
        doc.Load(Server.MapPath("RptName.rpt"));
        myreport.ReportSource = doc;
        myreport.ReportSource = myreport;
    }
于 2013-05-18T05:26:59.600 回答