home *** CD-ROM | disk | FTP | other *** search
- ********************
-
- PROCEDURE Header_p
-
- PARAMETERS headers, option, width
-
- * a1 - a5 are the lines of the header
- * option is the option from Whichway
- * width is the width of the header/report; its default is 79
-
- IF PCOUNT() != 3
- RETURN
- ENDIF
-
- PRIVATE _qaz, _hpcnt
-
- _hpcnt = ""
- FOR _qaz = 1 TO LEN(headers)
- _hpcnt = _hpcnt + headers[_qaz]
- NEXT
-
- IF EMPTY(_hpcnt)
- RETURN
- ENDIF
- IF width = 0
- width = 79
- ENDIF
- IF TYPE("scrpntcd") = "U"
- scrpntcd = ""
- ENDIF
- IF !EMPTY(scrpntcd) .AND. option = 2
- ?? &scrpntcd
- ENDIF
- FOR _qaz = 1 TO LEN(headers)
- ? FILL_OUT(headers[_qaz], width)
- NEXT
- IF option = 1
- ? scrlbar + REPLICATE(scrhoriz, width) + scrrbar
- ELSE
- ?
- ? REPLICATE("-", width)
- ENDIF
-
- * End of File