home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Press 1997 July
/
Sezamfile97_1.iso
/
msdos
/
clipper
/
c50xp300.a01
/
XPDEMO.ARJ
/
XPBROWSE.PRG
< prev
next >
Wrap
Text File
|
1992-10-01
|
1KB
|
31 lines
* ------------------------------------------------------------------------
* 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 )