How to overcome SendKey exception in currency cell
9 Dec 2019 / 1 minute to read
CurrentCellKeyDown event cannot be handled for CurrencyTextbox when Windows Forms application is hosted into Internet Explorer. It will throw an error message as,“SendKeys cannot run inside this application.” To overcome this exemption, set ActivateSendKey property to false.
//GridGroupingControl:
this.Grid.TableModel.Option.ActivateSendKey = false;
//GridControl/GridDataBound:
this.Grid.Model.Option.ActivateSendKey = false;
//GridListControl:
this.GridList.Grid.Model.Option.ActivateSendKey = false;
'GridGroupingControl:
Me.Grid.TableModel.Option.ActivateSendKey = False
'GridControl/GridDataBound:
Me.Grid.Model.Option.ActivateSendKey = False
'GridListControl:
Me.GridList.Grid.Model.Option.ActivateSendKey = False
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page