home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Du Jour
/
SoftwareDuJour.iso
/
BUSINESS
/
DBASE
/
MEMBERS.ARC
/
MDSHODOC.PRG
< prev
next >
Wrap
Text File
|
1986-10-20
|
1KB
|
39 lines
*----------------------------------------------------------------------
* Program : Membership Database Package
* File : MDSHODOC
* Function: Print/Display MEMBERS.TXT
* Author : J. North
* Version : (AT contest)
* Date : 10/15/86
*----------------------------------------------------------------------
*
parameters prt
clear
if .not. file("members.txt")
do dialog with 10,"Documentation is not available. Press any key."
set console off
wait ""
set console on
return
endif
do dialog with 10,"Ready to "+iif(prt,"print","display")+" documentation. Proceed(Y/N)?"
set console off
clear typeahead
wait "" to yn
set console on
if upper(yn)="Y"
if prt
type members.txt to print
eject
else
clear
do dialog with 10,"Use Ctrl-S to start & stop scrolling"
@ 23,0
wait "Press any key when ready"
clear
type members.txt
wait "Press any key to return to menu"
endif
endif
return