Hi,
Is there any globalization settings to only allow English input for all winform grid, including cut/paste into the grid.
Thanks
I'm not sure what you mean. What exactly is "English input"?
Clarification: English characters only, more like ASCII
I'm still not really sure what you mean. There's nothing built-in to the grid to limit what characters can be input into a cell, unless you use the MaskInput property on the column to provide an input mask.
Beyond that, you would have to handle some event of the grid to validate the data in a grid cell, like KeyDown, KeyPress, CellChange, BeforeCellDeactivate or BeforeCellUpdate.