home *** CD-ROM | disk | FTP | other *** search
- <<* MSADISP.INC *>>
-
- <<procedure GenDisplayBody>>
- <<integer pancol>>
- <<string strg>>
- <<begin>>
- <<InitBrowse>>
- PARAMETER row,listRECS
- IF listRECS > 1
- * ---Display heading when listing the entire page.
- <<GenColor( 1,'STATUS' )>>
- @ rowTOP-1,0
- @ rowTOP-1,0 SAY "Record# "
- DO CASE
- <<select field 1>>
- <<for pancol := 1 to panmax>>
- CASE pancol = {pancol}
- <<strg :=BrowseHeading>>
- ?? {"}{strg}{"}
- <<endfor>>
- ENDCASE
- * ---Clear the window area.
- <<GenColor( 1,'WINDOW' )>>
- Scroll rowTOP,0,rowBOTTOM+1,79,rowBOTTOM+1-rowTOP
- ENDIF
- * ---Display the records.
- SET HEADING OFF
- <<GenColor( 0,'WINDOW' )>>
- @ row-1,0 SAY ""
- DO CASE
- <<select field 1>>
- <<for pancol := 1 to panmax>>
- CASE pancol = {pancol}
- <<strg :=BrowseList>>
- LIST NEXT listRECS {strg}
- <<endfor>>
- ENDCASE
- SET HEADING ON
- <<end>> <<*GenDisplayBody*>>
-
- <<* EOF: MSADISP.INC *>>
-