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;

UltraWebGrid helper to find a column index based on the caption

In order to avoid WEAK typing ( i.e. e.Row.Cells[5] ) I have written a helper method to return the index of an Infragistics UltraWebGrid column based upon its caption text. This is probably best explained via an example: In this scenario a row in my SOLVENT search results has been clicked. I want to load … Continue reading UltraWebGrid helper to find a column index based on the caption

The theme of collaboration – Some ideas for articles

I was recently asked to help identifying some key articles, scenarios and technologies that we could highlight in an upcoming magazine on collaboration. As a framework we are looking at collaboration between individuals, between organisations, between organisations and individuals and between teams across a 'lifecycle' of innovation from idea generation through to delivering the desired … Continue reading The theme of collaboration – Some ideas for articles

How to … Set up LLBLgen Databinding in Visual Studio

LLBLGen Pro ships with its own DataSource controls: LLBLGenProDataSource for selfservicing LLBLGenProDataSource2 for adapter. These also are located in the SD.LLBLGen.Pro.ORMSupportClasses dll for .NET 2.0 and you have to add them to the toolbox first. This can be done manually by right-clicking the toolbox when a webform is open in the editor (HTML or design … Continue reading How to … Set up LLBLgen Databinding in Visual Studio