by ukoenig » Fri Apr 26, 2019 6:52 pm
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 )
- Code: Select all Expand view
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
Last edited by
ukoenig on Sat Apr 27, 2019 7:49 am, edited 4 times in total.
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.