Hi,
I am setting the value of a formula field at run time.
I get a "
The matching " for this string is missing. " error.
My code is :
Code:
string address=dr["addr1"].toString()+Environment.NewLine+dr["addr2"].toString()+Environment.NewLine+dr["city"].toString();
rpt.DataDefinition.FormulaFields["clientaddress"].Text="\"" + address + "\"";
If i remove Environment.NewLine code then it works fine.
How to set the value of the formula field with a newline character?
Thanks in advance.
Vinay