--- title: "Checkbook Accounts" type: "article" slug: "checkbook-accounts" url: "http://localhost/article/checkbook-accounts/" markdown_url: "http://localhost/article/checkbook-accounts.md" published_at: "2026-01-25T21:17:59+00:00" modified_at: "2026-01-25T21:18:00+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "When running this program, you will be asked to enter the original balance then the number of checks to be totaled. The computer will then ask you the names of the recipients of the checks and the amount of the checks. If the transaction is a deposit just enter DEPOSIT when the computer ask you…" category: - name: "Byte Power" slug: "byte-power" taxonomy: "category" url: "http://localhost/category/periodicals/byte-power/" post_tag: - name: "Downloadable" slug: "downloadable" taxonomy: "post_tag" url: "http://localhost/tag/downloadable/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" model: - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" indiv: - name: "Kristian Boisvert" slug: "boisvert-kristian" taxonomy: "indiv" url: "http://localhost/indiv/boisvert-kristian/" publication_r: id: 38570 title: "Byte Power 1st Class Magazine" type: "periodical" url: "http://localhost/periodical/byte-power-1st-class/" authors_r: - name: "Kristian Boisvert" slug: "boisvert-kristian" taxonomy: "indiv" url: "http://localhost/indiv/boisvert-kristian/" issues_articles: - id: 38576 title: "Byte Power Feb 1987" type: "issue" url: "http://localhost/issue/byte-power-6/" pubdate: "February 1987" archive_link: true article_media: - id: 63198 title: "Checkbook Accounts" type: "computer_media" url: "http://localhost/computer_media/checkbook-accounts/" --- # Checkbook Accounts When running this program, you will be asked to enter the original balance then the number of checks to be totaled. The computer will then ask you the names of the recipients of the checks and the amount of the checks. If the transaction is a deposit just enter DEPOSIT when the computer ask you the name of the recipient of the check then the amount of deposit. The data can be printed on the TS2040 or a full-size printer, driver should be at around 64000. ## Source Code: Checkbook Accounts ``` 0 CHECKBOOK ACCOUNTS WRITTEN BY KRISTIAN BOISVERT ©1987 BYTE POWER 20 REM PRINT DRIVER SHOULD BE BETWEEN 30000 & 49999 OR BETWEEN 62000 & 65535 30 LET REDO=-6: IF PEEK 23681=0 THEN PRINT AT 15,0;: LIST 9999: STOP 40 PAUSE 300 45 LET l=USR 50900 46 GO TO PEEK 65535 50 REM QUIT PORGRAM 60 CLEAR 65535: NEW 100 REM LOAD 110 GO SUB 2000 120 LOAD a$CODE 60056 130 LET l=USR 57365 140 GO TO PEEK 65535 200 REM SAVE 210 GO SUB 2000 220 IF a$="" THEN GO TO 210 225 SAVE a$CODE 60056,1778 230 PRINT AT 10,4;"REWIND TAPE TO VERIFY...": VERIFY a$CODE 240 GO TO 130 2000 INPUT "FILE NAME:"; LINE a$: IF LEN a$>10 THEN GO TO 2000 2010 RETURN 9000 INK 0: PAPER 7: BORDER 7: CLEAR 29999: PRINT AT 8,7;"CHECKBOOK ACCOUNTS" 9010 PRINT AT 10,2;"Written by KRISTIAN BOISVERT";AT 12,8;"©1987 BYTE POWER" 9015 PRINT AT 15,0;"Still LOADING...": INK 7: PRINT AT 18,0;: LOAD ""CODE : INK 0 9020 GO TO 10 9999 SAVE "CHECKBOOK" LINE 9000: SAVE "CHECKBOOK"CODE 5e4,10056: VERIFY "CHECKBOOK": VERIFY "CHECKBOOK"CODE 5E4,10056 ```