We have a very simple report, with just couple of TextBoxes on it.
private void InitializeComponent() |
{ |
... |
this.titleTextBox = new Telerik.Reporting.TextBox(); |
this.txtBody = new Telerik.Reporting.TextBox(); |
... |
} |
|
{ |
InitializeComponent(); |
|
this.titleTextBox.Value = "Header"; |
this.txtBody.Value = "==="; |
} |
|
When we set the value of a TextBox to "===", we get a very strange error:
An error has occured while processing TextBox 'txtBody': |
Syntax error: Missing operand before '=' operator. |
|
If we set the value to '---' it works fine.
It looks like you're using the '=' character to indicate that we should be doing a data substitution. How do we stop this from happening?