We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Syncfusion calculator

Syncfusion calculator doesn’t behave normally. Enter 12*2 and press enter. Result will be 22. Ohh. No comments.

2 Replies

AR Anupama Roy Syncfusion Team April 5, 2006 02:05 PM UTC

Hi, We are able to reproduce the issue here.I will go ahead and log a bug report with the highest priority and will try our very best to address this issue at the earliest. Sorry for any inconvienience caused. Regards, Anu.


AD Administrator Syncfusion Team April 7, 2006 07:12 AM UTC

Hi As a workaround,you can override ProcessDialogKey and simulate the CalcOperatorEquals.Please take a look at the code snippet. public class CalcAdv:Syncfusion.Windows.Forms.Tools.CalculatorControl { public CalcAdv() : base() {} protected override bool ProcessDialogKey(Keys keyData) { if (keyData == Keys.Enter) { this.ButtonAction (Syncfusion.Windows.Forms.Tools.CalcActions.CalcOperatorEquals); return true; } return base.ProcessDialogKey (keyData); } } sample Sorry for the delay in response. Regards, Anu.

Loader.
Live Chat Icon For mobile
Up arrow icon