Hi,
I want to show a blank header in one table for a band.
Please find the attached screen shot for your reference.
Thanks
If you are using UltrawinGrid then yourGrid.DisplayLayout.Bands(yourbandnumber).Columns(yourColumnName).Header.Caption = ''
Place this in the initializelayout event.
Nick
If you set the Header.Caption to an empty string, I am pretty sure the column header will fall back to displaying the column's Key. So you probably need to use a single space character rather than an empty string.