Report Design
 Crystal Reports Forum : Crystal Reports for Visual Studio 2005 and Newer : Report Design
Message Icon Topic: problems with paramaters Post Reply Post New Topic
Author Message
marcstrong
Newbie
Newbie


Joined: 08 Apr 2012
Online Status: Offline
Posts: 9
Quote marcstrong Replybullet Topic: problems with paramaters
    Posted: 16 Sep 2012 at 8:01pm
Hi

I'm completing a tutorial recommended by another user.
I have entered the following code in my project:

Imports CrystalDecisions.CrystalReports.Engine
Imports CrystalDecisions.Shared
Imports System.Collections

Public Class Form1
    Private customersByCityReport As CustomerByCity
    Private Const PARAMETER_FIELD_NAME As String = "City"
  

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        ConfigureCrystalReports()
    End Sub

    Private Sub ConfigureCrystalReports()
        Dim myArrayList As ArrayList = New ArrayList()
        myArrayList.Add("Paris")
        myArrayList.Add("Tokyo")
        SetCurrentValuesForParameterField(customersByCityReport, myArrayList)
        customersByCityReport = New CustomerByCity
        myCrystalReportViewer.ReportSource = customersByCityReport
    End Sub

    Private Sub SetCurrentValuesForParameterField(ByVal myReportDocument As ReportDocument, ByVal myArrayList As ArrayList)
        Dim currentParameterValues As ParameterValues = New ParameterValues()
       
        For Each submittedValue As Object In myArrayList
            Dim myParameterDiscreteValue As ParameterDiscreteValue = New ParameterDiscreteValue()
            myParameterDiscreteValue.Value = submittedValue.ToString()
            currentParameterValues.Add(myParameterDiscreteValue)
        Next
        Dim myParameterFieldDefinitions As ParameterFieldDefinitions = myReportDocument.DataDefinition.ParameterFields
        Dim myParameterFieldDefinition As ParameterFieldDefinition = myParameterFieldDefinitions(PARAMETER_FIELD_NAME)
        myParameterFieldDefinition.ApplyCurrentValues(currentParameterValues)
    End Sub


End Class

However, when I run the message the line in red causes the error message: object reference not set to instance of an object

Can anyone help?

Thanks


IP IP Logged
hilfy
Admin Group
Admin Group
Avatar

Joined: 20 Nov 2006
Online Status: Offline
Posts: 3702
Quote hilfy Replybullet Posted: 17 Sep 2012 at 4:29am
Try changing this:
 
myReportDocument.DataDefinition.ParameterFields
 
to this:
 
myReportDocument.ParameterFields
 
-Dell
IP IP Logged
marcstrong
Newbie
Newbie


Joined: 08 Apr 2012
Online Status: Offline
Posts: 9
Quote marcstrong Replybullet Posted: 17 Sep 2012 at 7:41am
Hi Del

I tried doing that but got the following error message:

Value of type 'CrystalDecisions.Shared.ParameterFields' cannot be converted to 'CrystalDecisions.CrystalReports.Engine.ParameterFieldDefinitions'.    

IP IP Logged
hilfy
Admin Group
Admin Group
Avatar

Joined: 20 Nov 2006
Online Status: Offline
Posts: 3702
Quote hilfy Replybullet Posted: 17 Sep 2012 at 8:08am
I work in C#, so I don't have any VB.NET samples, but here's what I do to set the parameters:
 
myRpt.ParameterFields["MyParam"].AllowCustomValues = true;
myRpt.ParameterFields["MyParam"].CurrentValues.Clear();
myRpt.ParameterFields["MyParam"].CurrentValues.AddValue(myValue);
 
I only use the parameter definition stuff when I'm scheduling a report that's in BusinessObjects and I'm dealing with a Report object instead of a ReportDocument object.
 
-Dell
IP IP Logged
Post Reply Post New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum



This page was generated in 0.016 seconds.