I need to show more than three fields in the same page . I need to show more than the titlles of headers may permit .
- Code: Select all Expand view
method print(oSurvey) CLASS TSurvey
*-------------------------------
REPORT oReport TITLE "*** Survey1 Report ***" PREVIEW
COLUMN TITLE "Survey ID" DATA oSurvey:SurveyID
COLUMN TITLE "Contact Name" DATA oSurvey:cnt_last,oSurvey:cnt_first,oSurvey:cnt_middle
COLUMN TITLE "Position Title Within Surveyion" DATA oSurvey:title
COLUMN TITLE "Name of Surveyion" DATA oSurvey:ass_name
GROUP ON oSurvey:SurveyID
EJECT
END REPORT
oReport:CellView()
ACTIVATE REPORT oReport
RETURN NIL