Results 1 to 3 of 3

Thread: Crystal Report 8.5 in .Net 2002

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2003
    Posts
    4

    Question 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

  2. #2

  3. #3
    Hyperactive Member
    Join Date
    Mar 2002
    Location
    Dublin (Ireland)
    Posts
    304
    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
  •  



Click Here to Expand Forum to Full Width