home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
xbase
/
library
/
dbase
/
tc
/
tpcmenu
/
lbar.prg
next >
Wrap
Text File
|
1990-02-15
|
918b
|
25 lines
**************************************************************
* NAME: LBAR.PRG
* AUTHOR: STEVE STAMM
* FILES: TPCMENU.BIN
* COPYRIGHT: STEVE STAMM COPYRIGHT (C) 1988
* PURPOSE: DRIVER FOR TPCMENU.BIN
* PARAMETERS: AS FOLLOWS:
*************************************************************
parameter choice, vert_space, row, collum, rows, collums, total, ;
seperater, lb_width, backgr, bar_color
vert_space = vert_space + 1
lbar = chr(choice) + chr(vert_space) + chr(row+1)+;
chr(collum+1) + chr(rows) + chr(collums)+;
chr(total) + chr(seperater) + chr(lb_width)+;
chr(backgr) + chr(bar_color) + other_key + space(lb_width)
call tpcmenu with lbar
choice= asc(substr(lbar,1,1))
key = asc(substr(lbar,2,1))
under = rtrim(substr(lbar,3,lb_width))
vert_space = 0
return
* EOF: LBAR.PRG
************************************************************
*: EOF: LBAR.PRG