I am trying to run reports containing custom code, but the code seems not to execute. I have tried simple functions that just return a string, which I then include in an expression within the report, but nothing is printed.
For example, if I create the following function in custom code:
Public Function InitValues() as String
Return "Init"
End Function
I then include the following as the expression for a textbox:
="Hello world " & code.InitValues()
All that is output is "Hello World"