有人可以帮忙解决我的问题。我已经有了这个代码,但我似乎无法将两者结合起来。 图例:dt1 =数据集; crpt = Crystal Report File
这是我的代码,用于将数据库值加载到使用txtGender文本框的值过滤的Crystal Report中:
SqlConnection conn = conString.getCon();
ReportDocument cy = new ReportDocument();
dt1 ds = new dt1();
conn.Open();
cy.Load(Application.StartupPath + @"\crpt.rpt");
SqlDataAdapter da = new SqlDataAdapter("exec viewInfo @gen", conn);
da.SelectCommand.Parameters.AddWithValue("@gen", txtGender.Text);
da.Fill(ds.Info);
cy.SetDataSource(ds);
crystalReportViewer1.ReportSource = cy;
conn.Close();
虽然这是我将文本框txtGender值传递到Crystal Report参数对象的代码,该对象名为" Gen":
ParameterFields pField = new ParameterFields();
ParameterField pTitle = new ParameterField();
ParameterDiscreteValue pValue = new ParameterDiscreteValue();
pTitle.ParameterFieldName = "Gen"; //the name of the field @ Crystal Report
pValue.Value = txtGender.Text; //sending the text box value
pTitle.CurrentValues.Add(pValue);
pField.Add(pTitle);
crystalReportViewer1.ParameterFieldInfo = pField;
crpt objBT = new crpt();
objBT.Refresh();
crystalReportViewer1.ReportSource = objBT;
我的问题是如何组合这两个代码,以便当我在文本框中输入值时,它会将数据库值加载到Crystal Report中,并将文本框的值传递给Crystal Report参数对象"根&#34 ;.我尝试过组合这些代码,但它会提示一条消息"参数值不正确"。任何人?