I need to display same column twice in the report, but the first time just until some symbol in the string data, and second time-after that symbol. How can i do that? I thought about using some sort of expressions, but didn't find the place in the designer, where to apply them.
ps i use Stimulsoft Reports.Net 2008.2
Can i use regular expressions in reports?
Can i use regular expressions in reports?
Hello,
Try to use GetValueEvent of textbox. You can current text value with help of following code:
After modifications you need assign changed string to e.Value:
Thank you.
Try to use GetValueEvent of textbox. You can current text value with help of following code:
Code: Select all
string str = e.Value;
Code: Select all
e.Value = str;