Welcome to deepcode.co.uk Sign in | Join | Help

December 2007 - Posts

A common practice when working with databases is to use enumerations for any static lookup (ID/description) data. These enums are represented both in code and also in the database for referential integrity. The idea being this static data rarely changes Read More...
I needed a small reminder today on how to add colour to cells when using the ultragrid component from infragistics. The simple answer is to use the InitializeRow event; 1 2 3 4 5 6 7 8 9 10 private void ultraGrid1_InitializeRow( object sender, Infragistics.Win.UltraWinGrid.InitializeRowEventArgs Read More...