I look around and I found a lot of answers about making assembly code and call a function of the assembly from Report control through expression. but I need to know how to call a function of th assembly custom code from custom code editor. I have success to call a function from report expression in text control but when I try to call the same function from inside of custom code editor the BIDS preview send a error of declaration instance error. Example After make the reference in a text box expression write Code.Limits.GetMe("LegendLimit1") works but when in custom code I try
Dim test as string
Test = Limits.Get("LegendLimit1")
'Or
Test = SSRS.Library.Limits.Get("LegendLimit1")
Has the error