Skip to content

Instantly share code, notes, and snippets.

@sAbakumoff
Created May 21, 2013 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sAbakumoff/5617110 to your computer and use it in GitHub Desktop.
Save sAbakumoff/5617110 to your computer and use it in GitHub Desktop.
Dim val1 As GrapeCity.ActiveReports.Expressions.ExpressionObjectModel.ParameterValue = New Expressions.ExpressionObjectModel.ParameterValue
Dim val2 As GrapeCity.ActiveReports.Expressions.ExpressionObjectModel.ParameterValue = New Expressions.ExpressionObjectModel.ParameterValue
Dim val3 As GrapeCity.ActiveReports.Expressions.ExpressionObjectModel.ParameterValue = New Expressions.ExpressionObjectModel.ParameterValue
val2.Value = "TEST12"
val3.Value = "TEST13"
val1.Value = "TEST"
Runtime.Parameters(1).ValidValues.Add(val1)
Runtime.Parameters(1).ValidValues.Add(val2)
Runtime.Parameters(1).ValidValues.Add(val3)
Runtime.Parameters(1).Values.Add(val1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment