C#Crystal报表参数超出范围异常

时间:2017-08-24 19:25:38

标签: c# sql-server-2005 crystal-reports

我正在创建一个水晶报告@ c#program但是当我执行报告时它首先工作,但是当我第二次执行相同的报告时,我遇到了这个错误。

我使用view to sql server来检索我的数据。

 cmd = new SqlCommand("Select * From referral where referralNo = '" + 
 lblReferral.Text + "' and clientNo = '" + cbClientNo.Text + "'", con);
 cmd.CommandType = CommandType.Text;
 da.SelectCommand = cmd;
 da.Fill(ds, "referral");
 rp.SetDataSource(ds);
 f3.crt.ReportSource = rp;   
 f3.Show();
 rp.Close();

我遇到了这个错误。

 An unhandled exception of type 'System.ArgumentOutOfRangeException' 
 occurred in System.Windows.Forms.dll

 Additional information: Index 0 is out of range.

然后这些是实例

 CrystalReport1 rp = new CrystalReport1();
 SqlDataAdapter da = new SqlDataAdapter();
 DataSet ds = new DataSet();
 reportViewer f3 = new reportViewer();

Error @reviewing the report

1 个答案:

答案 0 :(得分:1)

我找到了问题的答案,它提示参数异常因为程序,我通过form.Show()而不是form.ShowDialog()调用了表单。