Posted by: connormurphy | 19 October, 2007

Remove the comma from WebNumericEdit

 If you do not want to display the comma in the Infragistcs WebNumberic Edit control.

//WebNumericEdit control will use a comma to seperate number groups

//This will prevent 1234567 being displayed as 1,234,567

 //Requires: using System.Globalization;

NumberFormatInfo numInfo = new NumberFormatInfo();

numInfo.NumberGroupSeparator = “”;

this.txt_Pfizer_id.NumberFormat = numInfo;


Responses

  1. Hey Connor,

    How’s tricks? Nice blog you’ve got here, looks like you haven’t updated it in a while but some interesting articles on it at any rate! How’s everything in DC? I’ve started working as a software developer in Cork, doing mostly Oracle stuff. Will probably head over to the states next summer, likely the west coast though! Any mad trips to Boston lately?

    Take it easy,
    Joe.


Leave a response

Your response:

Categories