我正在使用 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
来自文本框的特定学生。但它曾经在另一个项目上工作过。我打开新项目一切都一样,但现在不起作用。
请帮我。