Hi,
i use the WebNumericEdit Control from NetAdvantage 7.2. The allowed user input is a possitive integer, so i set min val to 0 and DataMode to int. If the user input is 1234 and the focus leave the field, it is displayed as 1.234. I don't no why, but it irritate the user. I try to change the property 'NumberFormat.NumberGroupSeperator' to '' (empty string) on Page.Load; with the error that the instance is write-protected.
How can i change the behavior of the controll to not format the integer ?
This will solve the problem:
Dim nfi As System.Globalization.NumberFormatInfo
nfi.NumberGroupSeparator = ""
End Sub
This is the WinForms forum. Please post your question in the ASP.Net forums.