|
-
May 28th, 2004, 02:43 AM
#1
Thread Starter
New Member
Crystal Report 8.5 in .Net 2002
Hi, friend
I use Crystal Report 8.5 in my application (.NET 2002).
I have 2 application :
1. ASP WebService Application.
2. Windows Application.
I use Crystal Report 8.5 as Report WebService (in ASP WebService Application)
and i access the report from Windows Application.
When i access the report, my application show form parameter for fill criteria is required by report.
How do i disappear the form from my application, and send criteria is required by report through the code ?
Thanks, regard
-
May 28th, 2004, 11:57 AM
#2
Fanatic Member
-
May 28th, 2004, 02:49 PM
#3
Hyperactive Member
alternatively (did not follow the link of the previous respondent):
here is a code example:
Dim p2 As New ParameterFields
Dim p1 As New ParameterField
p1.ParameterFieldName = "RegUser"
Dim d1 As New ParameterDiscreteValue
d1.Value = RegisteredUser.CurUsr
p1.CurrentValues.Add(d1)
p2.Add(p1)
CrystalReportViewer1.ParameterFieldInfo = p2
Note: RegUser is a parameter field on the report
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|