millenniasp
Well-known member
- Joined
- Nov 12, 2003
- Messages
- 67
I have a report that has a parameter field called ClientID
the selection formula in Crystal reports is
{vwLetterInfo.ClientID} = {?ClientID}
I obtain the ClientID from a Textbox in my Web Application
How do I pass the parameter to crystal?
I am very new to this, so any help would be appreciated. I looked and tried some examples already on this website (and many other websites), but none of them worked (Or I am not understanding them)
Here is the code that I have so far (this works as long as I do not try and call a parameter in crystal)
Dim myReport1 As New ReportDocument
myReport1.Load(RTrim(Request.Params("strName")))
CrystalReportViewer1.ReportSource = myReport1
CrystalReportViewer1.DataBind()
Thank you in advanced for any and all advice & help!
the selection formula in Crystal reports is
{vwLetterInfo.ClientID} = {?ClientID}
I obtain the ClientID from a Textbox in my Web Application
How do I pass the parameter to crystal?
I am very new to this, so any help would be appreciated. I looked and tried some examples already on this website (and many other websites), but none of them worked (Or I am not understanding them)
Here is the code that I have so far (this works as long as I do not try and call a parameter in crystal)
Dim myReport1 As New ReportDocument
myReport1.Load(RTrim(Request.Params("strName")))
CrystalReportViewer1.ReportSource = myReport1
CrystalReportViewer1.DataBind()
Thank you in advanced for any and all advice & help!