AndreAraujo
Programmer
Hi, im creating an Crystal report in VB.net , i use 3 Sql stored procedure with parameters, my problem is that i pass the parameters values, but the report continue to ask me for the value for that parameter.
This is tha code i use in load event inthe form that contains the ReportViewer
Any ideas why?,
should i use views and then filter my report?
Thanks in advance
This is tha code i use in load event inthe form that contains the ReportViewer
Code:
Private Sub frm_reports_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim rpt As New Myreport
rpt.SetParameterValue("@id", 20045002021, "")
ReportViewer.ReportSource = rpt
End Sub
should i use views and then filter my report?
Thanks in advance