When building expressions in the designer and there is a null string the resulting string is null
type = null
size = "5x5x1/2"
length = "5 feet"
expression
=Fields.type + " " + Fields.size + " " + Fields.grade
resulting value is null in report textbox
It sure would be nice to Directly support string.Format(string, params object[] items) in expressions.
My guess is the params is not easily translated. from an expression.
type = null
size = "5x5x1/2"
length = "5 feet"
expression
=Fields.type + " " + Fields.size + " " + Fields.grade
resulting value is null in report textbox
It sure would be nice to Directly support string.Format(string, params object[] items) in expressions.
My guess is the params is not easily translated. from an expression.