Created
May 21, 2013 02:15
-
-
Save sAbakumoff/5617110 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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