home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
xbase
/
library
/
clipper
/
template
/
tem_menu.prg
< prev
next >
Wrap
Text File
|
1988-11-04
|
730b
|
30 lines
* ________.PRG
* __________ MENU module written by: ____________
* created: 10/11/88
* last update: 10/11/88
*
* Module called from ________.PRG
*
DO WHILE .T.
CLEAR
menu_opt=1
@ 03,00 SAY REPLICATE(CHR(196),79) && Single Top Border Line
@ 23,00 SAY REPLICATE(CHR(196),79) && Block Bottom Border Line
@ 24,00 SAY sys_comm
@ 01,00 PROMPT "________" MESSAGE "_______________"
@ 01,COL()+2 PROMPT "________" MESSAGE "_______________"
MENU TO menu_opt
DO CASE
CASE menu_opt=0
EXIT
*
CASE menu_opt=1
DO ________
*
CASE menu_opt=2
DO ________
*
ENDCASE
ENDDO
RETURN