home *** CD-ROM | disk | FTP | other *** search
- * ------------------------------------------------------------------------
- * Module......: XPBROWSE.PRG
- * Title.......: BROWSE part of the Expand Library Demonstration Program
- * Author......: Pepijn Smits.
- * Date........: July/August 1992
- * Copyright...: (c)1992 by Softwarebureau Pepijn Smits
- * Notes.......: Clipper 5.01 Demo of the Expand Library
- * Some general BROWSE functions
- * See XPDEMO.RMK For Compile and Link instructions.
- * ------------------------------------------------------------------------
-
- Function XPbrowse(cTitle,cHeader,abData)
- NormColor()
- @ 1,0 clear to MaxRow()-1,MaxCol()
- @ 1,0 to maxRow()-1, MaxCol() DOUBLE
- XPcenter(1,cTitle)
- @ 3,0 say '╟'+replicate('─',MaxCol()-1)+'╢'
- @ 2,1 say space(MaxCol()-1)
- XPdisplay(2,1,cHeader)
- Return (XPmouseChoice(4,1,MaxRow()-2,MaxCol()-1,abData))
-
- Function XPedit(cTitle,cHeader,bFld,bTrap)
- NormColor()
- @ 1,0 clear to MaxRow()-1,MaxCol()
- @ 1,0 to maxRow()-1, MaxCol() DOUBLE
- XPcenter(1,cTitle)
- @ 3,0 say '╟'+replicate('─',MaxCol()-1)+'╢'
- @ 2,1 say space(MaxCol()-1)
- XPdisplay(2,1,cHeader)
- Return ( XPmouseEdit(4,1,MaxRow()-2,MaxCol()-1,NIL,bFld,bTrap)<>0 )
-