Message 1 of 3
ILOGIC CUSTOM ¨PARAMETER in CUSTOM PROPERTY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I have a custom parameter "TEKENCODE_INPUT" which can be edited with Multi Value list. (see photo)
Now i want this parameter filled in a custom property.
I do this with a Ilogic Rule
SyntaxEditor Code Snippet
Dim TEKENINGCODE, TEKENCODE_INPUT As String Dim TC_input, TC_output As String TEKENCODE_INPUT = TC_input Select Case TC_input Case S TC_output = "S" Case K TC_output = "K" Case Else TC_output = "X" End Select iProperties.Value("custom", "TEKENINGCODE") = TC_output
But whatever i choose, the custom property "TEKENINGCODE" has alwayes the value "S".
What do i wrong?