to answer Your questions :
Is there a way of splitting the column headers over two rows
e.g. "Stock Code" & "Cost Price"
to display as headers
Stock Cost
Code Price
I would also like to display entries for logical fields as "Y" or "N"
syntax-sample :
( completed with header-splitting ( next post from Mr. Rao ) and shows
the different results of logical field-syntax )
HEADERS "Recno()", " Â Last" + CRLF + "( Index )", "First", "Age", "HireDate", "Married"
WITH OBJECT oBrw
   // header linefeed
   :nHeaderLines := 2
   // images for YES / NO
   :Married:SetCheck( { c_path1 + "Checkon.bmp", c_path1 + "Checkoff.bmp" }, EDIT_GET )   Â
   // or a checkbox
   :Married:SetCheck() Â
  Â
   // group-header
   :SetGroupHeader( "Name", 1, 3 ) // 'Recno()', 'FIRST', 'LAST'
   :SetGroupHeader( "Data", 4, 6 ) // 'AGE', 'HIREDATE', 'MARRIED'
   :CreateFromCode()
END
regards
Uwe
