private void SetupGrid()
{
// Set the "fname" column to only allow values that are between 1 and 15 characters long.
//
this.ultraGrid1.DisplayLayout.Bands["customers"].Columns["fname"].MinLength = 1;
this.ultraGrid1.DisplayLayout.Bands["customers"].Columns["fname"].MaxLength = 15;
}