Hi,
In the DoubleTextBox control the number format it´s 1.350,75 (es-ES) culture, when the user presh "." key go to decimal places.
But in the GridNumericColumn don´t work, i make these
NumberFormatInfo numberFormat = Application.CurrentCulture.NumberFormat.Clone() as NumberFormatInfo;
numberFormat.NumberDecimalDigits = 2;
numberFormat.NumberDecimalSeparator = ".";
numberFormat.NumberGroupSizes = new int[] { 3 };
numberFormat.NumberGroupSeparator = ",";
It´s posible with the default(0,00) format when the user press "." key go to decimal places
Thanks.