home *** CD-ROM | disk | FTP | other *** search
- *--[accounts.prg]-- menu for accounting system
- PUBLIC clipper
- CLEAR
- DO WHILE .T.
- CLOSE DATABASES
- SET DELETED ON
- CLEAR
- SET COLOR TO W+
- ? " TENNESSEE DATA CONSULTING BILLING SYSTEM"
- ? " 7003 Chadwick, Suite 265"
- ? " Brentwood, TN 37027"
- ? " (615)377-6253"
- SET COLOR TO W
- TEXT
- ===============================================================================
-
- 1. Clients 5. Reindex all data files 9.
-
- 2. Projects [*] 6. Post charges to Clients 0. Exit System
-
- 3. Tasks 7. Display Status of Accts
-
- 4. Bills 8. Edit Existing Tasks
-
- ===============================================================================
- Press [0] to quit the accounting system
-
- [*] Coupling projects to clients and tasks has not been completed yet.
- Maybe by next week, else "real soon now" as they say!
- ENDTEXT
- choice=0
- @ 23,26 SAY "Please make a selection [ ]"
- @ 23,COL()-2 GET choice PICTURE "#"
- READ
- @ 23,0
- DO CASE
- CASE choice=1
- DO clients
- CASE choice=2
- CASE choice=3
- DO entrtask
- CASE choice=4
- DO bill
- CASE choice=5
- DO reindex
- CASE choice=6
- DO postclt
- CASE choice=7
- DO statacct
- CASE choice=8
- DO edittask
- CASE choice=0
- CLEAR
- EXIT
- OTHERWISE
- SET COLOR TO W*+
- WAIT " INVALID CHOICE"
- SET COLOR TO W
- @ 23,0
- ENDCASE
- ENDDO WHILE .T.
- RETURN
-