I want the grid header caption to display on two lines. I have set the band ColHeaderLines = 2 and the header expands in the designer. What do I put in the caption field of the column header to indicate where to start the second line? Right now the caption text is truncated when the column width is less than the caption width.
Put a carriage return line feed in the caption. Something like this:
.bands(0).columns(0).header.caption = "Customer" & vbcrlf & "Name"
Thanks that worked.