AN
Anonymous
March 14, 2008 03:10 PM UTC
Try these settings to see if they give you what you want.
cq = new CalcQuick();
CalcEngine.ParseDecimalSeparator = System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator[0];
CalcEngine.ParseArgumentSeparator = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ListSeparator[0];
If the regional setting is Swedish and your users type 1,1+1,2 they should then get the value 2,3
LL
Lars Lundstedt
March 17, 2008 09:08 AM UTC
Worked like a charm...thank you!