CLS COLOR 4 LOCATE 3, 3 PRINT "Loading..." COLOR 12: FOR a = 1 TO 10 SLEEP 1 LOCATE 3, 3 PRINT LEFT$("Loading...", a); NEXT a CLS COLOR 7 PRINT STRING$(80, "*") PRINT LOCATE 3, 30 PRINT "Welcome to....." PRINT PRINT STRING$(80, "*") SLEEP 2 CLS PRINT STRING$(80, "*") PRINT LOCATE 3, 30 PRINT "PROGRAM EDITION" PRINT PRINT STRING$(80, "*") SLEEP 2 CLS PRINT "There is many programs in this one compact program." PRINT "Ideas come from MIND MAKER QBASIC VERSION1.0 and MIND MAKER QBASIC VERSION 1.1." PRINT "Which you can find a copy of at http://geocities.com/coreyyeates/index.html" PRINT "Also you can E-MAIL me at runescape_rune_man@hotmail.com" PRINT PRINT "Press to continue." DO LOOP UNTIL INKEY$ = "c" CLS PRINT colo: PRINT "COLOR MENU:" PRINT COLOR 12 PRINT "(b)right red" COLOR 10 PRINT "(L)ime" COLOR 13 PRINT "(p)ink" COLOR 7 PRINT "(g)ray" COLOR 15 PRINT "(w)hite" COLOR 1 PRINT "(d)ark blue" COLOR 3 PRINT "(c)olor, blueish green" COLOR 7 DO i$ = INKEY$ LOOP UNTIL ((i$ = "c") OR (i$ = "b") OR (i$ = "d") OR (i$ = "l") OR (i$ = "p") OR (i$ = "g") OR (i$ = "w")) IF i$ = "b" THEN GOTO red IF i$ = "l" THEN GOTO lime IF i$ = "p" THEN GOTO pink IF i$ = "g" THEN GOTO grey IF i$ = "w" THEN GOTO white IF i$ = "d" THEN GOTO blue IF i$ = "c" THEN GOTO green red: COLOR 12: GOTO mmenu lime: COLOR 10: GOTO mmenu pink: COLOR 13: GOTO mmenu grey: COLOR 7: GOTO mmenu white: COLOR 15: GOTO mmenu blue: COLOR 1: GOTO mmenu green: COLOR 3: GOTO mmenu mmenu: CLS PRINT "PROGRAM MENU:" PRINT PRINT "MIND MAKER VERSION 1.1" PRINT "A program designed for picking random YES/NO answers" PRINT "NUMBER 1" PRINT STRING$(80, "#") PRINT "DATE AND TIME DISPLAYER" PRINT "A simple little program that displays the date and time" PRINT "NUMBER 2" PRINT STRING$(80, "#") PRINT "CALCULATOR" PRINT "A simple designed calculator" PRINT "NUMBER 3" PRINT STRING$(80, "#") PRINT "QWORD" PRINT "A text based program" PRINT "NUMBER 4" PRINT STRING$(80, "#") PRINT "END" PRINT "Ends the program" PRINT "NUMBER 5" PRINT STRING$(80, "#") PRINT "NUMBER 6 Next page" INPUT "Enter the number of the choice: "; a SELECT CASE a CASE 6 CLS sm: CLS PRINT "PROGRAM MENU(Page two):" PRINT PRINT "COLOR CHANGE" PRINT "Allows you to change the color." PRINT "NUMBER 1" PRINT STRING$(80, "#") PRINT PRINT "HELP" PRINT "Help menu" PRINT "NUMBER 2" PRINT STRING$(80, "#") PRINT PRINT "NUMBER AND TEXT" PRINT "Tells you number and text code/number." PRINT "NUMBER 3" PRINT STRING$(80, "#") PRINT PRINT "ASCII TABLE" PRINT "Shows you the number and what an ascii chr is." PRINT "NUMBER 4" PRINT STRING$(80, "#") PRINT PRINT "COMPASS MATHS" PRINT "A mathmatical game." PRINT "NUMBER 5" PRINT STRING$(80, "#") PRINT PRINT "NUMBER 6 Previous page" PRINT INPUT "Enter the number of the choice: "; b SELECT CASE b CASE 6 GOTO mmenu CASE 5 CLS score = 0 life = 3 'n + Y b = 4 c = 8 'e - Y d = 5 e = 2 's / f = 9 g = 3 'w * Y h = 3 i = 9 'ne + Y j = 7 k = 4 'se - Y l = 9 m = 4 'sw / Y n = 81 o = 9 'nw * Y p = 9 q = 6 CLS PRINT PRINT "###########################################################" PRINT "########################.##################################" PRINT "########################.#.################################" PRINT "######################.#.#..###############################" PRINT "#####################..#.#...######################....####" PRINT "####################...#.#....####################......###" PRINT "########################.########################..##....##" PRINT "########################.########################..###....#" PRINT "###########............................##############.....#" PRINT "############..........................##############......#" PRINT "#############........................##############.......#" PRINT "#.##..##..## #......................#..##..##..###........#" PRINT "##..##..##..###########################..##..##...........#" PRINT "###########################################################" SLEEP 1 CLS PRINT PRINT "###########################################################" PRINT "########################.##################################" PRINT "########################.#.################################" PRINT "######################.#.#..###############################" PRINT "#####################..#.#...#####################....#####" PRINT "####################...#.#....##################.......####" PRINT "########################.######################...##....###" PRINT "########################.######################...###...###" PRINT "###########............................##############...###" PRINT "############..........................##############....###" PRINT "#############........................##############.....###" PRINT "#.##..##..##.#......................#..##..##..###......###" PRINT "##..##..##..###########################..##..##.........###" PRINT "###########################################################" SLEEP 1 CLS PRINT PRINT "###########################################################" PRINT "################################.##########################" PRINT "###############################..##########################" PRINT "##############################....#########################" PRINT "#############################......########################" PRINT "############################........#######################" PRINT "#############################........######################" PRINT "##############################..............###############" PRINT "###############################........#####.##############" PRINT "################################........#####.#############" PRINT "#################################........#####.############" PRINT "#.##..##..##..##..##..##..##..#..##########..###..##..##.#" PRINT "##..##..##..##..##..##..##..##..#############..###..##..###" PRINT "###########################################################" SLEEP 1 PRINT "W E L C O M E T O..." SLEEP 2 PRINT "C O M P A S S M A T H!" mini: SLEEP 3 CLS LOCATE 1, 30 PRINT "score: "; score LOCATE 1, 57 PRINT "Lives: "; life LOCATE 1, 1 PRINT "NW N NE" PRINT " \ | / " PRINT "W-------E" PRINT " / | \ " PRINT "SW S SE" PRINT PRINT "To end, enter " INPUT "Enter in DIRECTION: "; a$ SELECT CASE a$ CASE "q" PRINT PRINT "Thanks for playing compass maths." PRINT PRINT "T O T A L S C O R E I S "; score PRINT PRINT "T O T A L L I V E S A R E "; life SLEEP 5 GOTO sm CASE "n" PRINT b; "+"; c INPUT ""; a IF a = b + c THEN PRINT "Correct" PRINT "You Survive The Wave." score = score + 5 c = c + c b = b + b ELSE PRINT "Wrong" PRINT "You Lose A Man From The Impact Of The Wave." life = life - 1 IF life = 0 THEN GOTO en END IF GOTO mini CASE "e" PRINT d; "-"; e INPUT ""; a IF a = d - e THEN PRINT "Correct" PRINT "You Survive The Wave." score = score + 5 d = d + d e = e + e ELSE PRINT "Wrong" PRINT "You Lose A Man From The Impact Of The Wave." life = life - 1 IF life = 0 THEN GOTO en END IF GOTO mini CASE "s" PRINT f; "divide"; g INPUT ""; a IF a = f / g THEN PRINT "Correct" PRINT "You Survive The Wave." score = score + 5 f = f + f g = g + g ELSE PRINT "Wrong" PRINT "You Lose A Man From The Impact Of The Wave." life = life - 1 IF life = 0 THEN GOTO en END IF GOTO mini CASE "w" PRINT h; "X"; i INPUT ""; a IF a = h * i THEN PRINT "Correct" PRINT "You Survive The Wave." score = score + 5 h = h + h i = i + i ELSE PRINT "Wrong" PRINT "You Lose A Man From The Impact Of The Wave." life = life - 1 IF life = 0 THEN GOTO en END IF GOTO mini CASE "ne" PRINT j; "+"; k INPUT ""; a IF a = j + k THEN PRINT "Correct" PRINT "You Survive The Wave." score = score + 5 j = j + j k = k + k ELSE PRINT "Wrong" PRINT "You Lose A Man From The Impact Of The Wave." life = life - 1 IF life = 0 THEN GOTO en END IF GOTO mini CASE "se" PRINT l; "-"; m INPUT ""; a IF a = l - m THEN PRINT "Correct" PRINT "You Survive The Wave." score = score + 5 l = l + l m = m + m ELSE PRINT "Wrong" PRINT "You Lose A Man From The Impact Of The Wave." life = life - 1 IF life = 0 THEN GOTO en END IF GOTO mini CASE "sw" PRINT n; "divide"; o INPUT ""; a IF a = n / o THEN PRINT "Correct" PRINT "You Survive The Wave." score = score + 5 n = n + n o = o + o ELSE PRINT "Wrong" PRINT "You Lose A Man From The Impact Of The Wave." life = life - 1 IF life = 0 THEN GOTO en END IF GOTO mini CASE "nw" PRINT p; "X"; q INPUT ""; a IF a = p * q THEN PRINT "Correct" PRINT "You Survive The Wave." score = score + 5 p = p + p q = q + q ELSE PRINT "Wrong" PRINT "You Lose A Man From The Impact Of The Wave." life = life - 1 IF life = 0 THEN GOTO en END IF GOTO mini END SELECT en: CLS LOCATE 1, 30 PRINT "score: "; score LOCATE 1, 57 PRINT "Lives: "; life LOCATE 1, 1 PRINT "NW N NE" PRINT " \ | / " PRINT "W-------E" PRINT " / | \ " PRINT "SW S SE" PRINT PRINT "G A M E O V E R" PRINT PRINT "T O T A L S C O R E I S "; score SLEEP 5 GOTO sm CASE 4 CLS top: FOR a = 1 TO 100 PRINT a; ":"; CHR$(a); " "; NEXT a PRINT INPUT "1: next page 2:end 3:back to main menu: "; a% IF a% = 2 THEN END IF a% = 1 THEN IF a% = 3 THEN GOTO sm CLS FOR b = 100 TO 255 PRINT b; ":"; CHR$(b); " "; NEXT b PRINT INPUT "1: previous page 2:end 3:back to main menu: "; a% IF a% = 1 THEN GOTO top IF a% = 2 THEN END IF a% = 3 THEN GOTO sm END IF CASE 3 CLS men: CLS PRINT "TEXT/NUMBER" PRINT PRINT "1: Amount of letters." PRINT "2: Letter to Number." PRINT "3: Number to letter." PRINT INPUT "What choice: "; b SELECT CASE b CASE 1 INPUT "Type in a word to find how long it is: "; a$ PRINT PRINT PRINT "The length of the word is: "; LEN(a$) PRINT PRINT "1: Back to main menu" PRINT "2: TEXT/NUMBER menu" PRINT "3: End" INPUT "Enter number of choice: "; z IF z = 1 THEN GOTO sm IF z = 2 THEN GOTO men IF z = 3 THEN END CASE 2 INPUT "type in 1 letters: "; c$ PRINT PRINT PRINT "The number of that charecter/s is: "; ASC("c$") PRINT "1: Back to main menu" PRINT "2: TEXT/NUMBER menu" PRINT "3: End" INPUT "Enter number of choice: "; z IF z = 1 THEN GOTO sm IF z = 2 THEN GOTO men IF z = 3 THEN END CASE 3 INPUT "Type in a number between (1-255): "; d PRINT PRINT PRINT "That number makes: "; CHR$(d) PRINT "1: Back to main menu" PRINT "2: TEXT/NUMBER menu" PRINT "3: End" INPUT "Enter number of choice: "; z IF z = 1 THEN GOTO sm IF z = 2 THEN GOTO men IF z = 3 THEN END END SELECT CASE 1 PRINT "COLOR MENU:" PRINT COLOR 12 PRINT "(b)right red" COLOR 10 PRINT "(L)ime" COLOR 13 PRINT "(p)ink" COLOR 7 PRINT "(g)ray" COLOR 15 PRINT "(w)hite" COLOR 1 PRINT "(d)ark blue" COLOR 3 PRINT "(c)olor, blueish green" COLOR 7 DO i$ = INKEY$ LOOP UNTIL ((i$ = "c") OR (i$ = "b") OR (i$ = "d") OR (i$ = "l") OR (i$ = "p") OR (i$ = "g") OR (i$ = "w")) IF i$ = "b" THEN GOTO reds IF i$ = "l" THEN GOTO limes IF i$ = "p" THEN GOTO pinks IF i$ = "g" THEN GOTO greys IF i$ = "w" THEN GOTO whites IF i$ = "d" THEN GOTO blues IF i$ = "c" THEN GOTO greens reds: COLOR 12: GOTO sm limes: COLOR 10: GOTO sm pinks: COLOR 13: GOTO sm greys: COLOR 7: GOTO sm whites: COLOR 15: GOTO sm blues: COLOR 1: GOTO sm greens: COLOR 3: GOTO sm CASE 6 END CASE 2 CLS mh: CLS PRINT "HELP" PRINT PRINT "Welcome to the help file where you can fins your question and get a full answer to it." PRINT PRINT "Help menu" PRINT PRINT "1: How to answer question like the main menu." PRINT "2: How to answer questiong like (m)enu." PRINT "3: Using the calculator." PRINT "4: Using the MIND MAKER 1.1." PRINT "5: Using the QWord." PRINT "6: end" PRINT "7: menu" PRINT INPUT "Enter the number of your choice: "; t SELECT CASE t CASE 7 GOTO sm CASE 6 END CASE 1 CLS PRINT "How to answer question like the main menu." PRINT PRINT "It is very simple how to use that part of the program." PRINT "All you need to remember is that if there is a question like that just simply" PRINT "type the number/letter of the choice you want." PRINT "E.G: Enter the number of your choice: ?4" PRINT "$ being the choice means that the program will take you to where that is." PRINT PRINT "(h)elp menu" PRINT "(e)nd" DO LOOP UNTIL ((INKEY$ = "h") OR (INKEY$ = "e")) IF INKEY$ = "e" THEN END IF INKEY$ = "h" THEN GOTO help CASE 2 PRINT "How to answer question like (m)enu" PRINT PRINT "It is simple to answer these questions." PRINT "All you need to remember is this:" PRINT "Whatever is middle of the () is the letter you press on the keyboard." PRINT "Then it will take you to where you need to goto." PRINT PRINT "(h)elp menu" PRINT "(e)nd" DO LOOP UNTIL ((INKEY$ = "h") OR (INKEY$ = "e")) IF INKEY$ = "h" THEN GOTO help IF INKEY$ = "e" THEN END help: GOTO mh hs: GOTO sm CASE 3 PRINT "Using the calculator" PRINT PRINT "The way you use the calculator is simply by doing:" PRINT "first: choosing your problem you wish to use E.G addition Ect" PRINT "secondly: Type in you first number you wish to use." PRINT "Thirdly: type in you second number you wish to use." PRINT "Fourth: just use the menu to do it again or leave." PRINT PRINT "(h)elp menu" PRINT "(e)nd" DO LOOP UNTIL ((INKEY$ = "m") OR (INKEY$ = "e")) IF INKEY$ = "e" THEN END IF INKEY$ = "h" THEN GOTO help CASE 4 PRINT "Using the MIND MAKER 1.1" PRINT PRINT "To use MIND MAKER 1.1 just press the button it says and follow the instructions." PRINT PRINT "(h)elp menu" PRINT "(e)nd" DO LOOP UNTIL ((INKEY$ = "h") OR (INKEY$ = "e")) IF INKEY$ = "h" THEN GOTO help IF INKEY$ = "e" THEN END CASE 5 PRINT "Using QWord" PRINT PRINT "All you need to do is follow all the instructions in qword." PRINT "There is some helpers in qword already." PRINT PRINT "(h)elp menu" PRINT "(e)nd" DO LOOP UNTIL ((INKEY$ = "h") OR (INKEY$ = "e")) IF INKEY$ = "e" THEN END IF INKEY$ = "h" THEN GOTO help END SELECT END SELECT CASE 5 END CASE 3 CLS PRINT "CALCULATOR" PRINT PRINT GOTO mo menu: CLS mo: PRINT "MENU OF PROBLEMS" PRINT PRINT "(d)ivision" PRINT PRINT "(m)ultiplication" PRINT PRINT "(a)ddition" PRINT PRINT "(s)ubtraction" INPUT "Enter the first letter of the problem"; a$ SELECT CASE a$ CASE "a" a: CLS PRINT "ADDITION" PRINT INPUT "How many number will you use: "; b DIM a(b) FOR c = 1 TO b PRINT "Enter number"; c INPUT a(c) d = d + a(c) NEXT PRINT "Total is "; d PRINT PRINT "(b)ack to menu" PRINT "(m)ain menu" PRINT "(e)nd" PRINT "(a)gain" DO LOOP UNTIL ((INKEY$ = "a") OR (INKEY$ = "b") OR (INKEY$ = "m") OR (INKEY$ = "e")) IF INKEY$ = "a" THEN GOTO a IF INKEY$ = "b" THEN GOTO menu IF INKEY$ = "m" THEN GOTO e IF INKEY$ = "e" THEN END CASE "s" s: CLS PRINT "SUBTRACTION" PRINT INPUT "How many number will you use: "; b DIM a(b) FOR c = 1 TO b PRINT "Enter number"; c INPUT a(c) d = d - a(c) NEXT PRINT "Total is "; d PRINT PRINT "(b)ack to menu" PRINT "(m)ain menu" PRINT "(e)nd" PRINT "(a)gain" DO LOOP UNTIL ((INKEY$ = "a") OR (INKEY$ = "b") OR (INKEY$ = "m") OR (INKEY$ = "e")) IF INKEY$ = "a" THEN GOTO s IF INKEY$ = "b" THEN GOTO menu IF INKEY$ = "m" THEN GOTO e IF INKEY$ = "e" THEN END CASE "m" m: CLS PRINT "MULTIPLICATION" PRINT INPUT "How many number will you use: "; b DIM a(b) FOR c = 1 TO b PRINT "Enter number"; c INPUT a(c) d = d * a(c) NEXT PRINT "Total is "; d PRINT PRINT "(b)ack to menu" PRINT "(m)ain menu" PRINT "(e)nd" PRINT "(a)gain" DO LOOP UNTIL ((INKEY$ = "b") OR (INKEY$ = "a") OR (INKEY$ = "m") OR (INKEY$ = "e")) IF INKEY$ = "a" THEN GOTO m IF INKEY$ = "b" THEN GOTO menu IF INKEY$ = "m" THEN GOTO e IF INKEY$ = "e" THEN END CASE "d" d: CLS PRINT "DIVISION" PRINT INPUT "How many number will you use: "; b DIM a(b) FOR c = 1 TO b PRINT "Enter number"; c INPUT a(c) d = d / a(c) NEXT PRINT "Total is "; d PRINT PRINT "(b)ack to menu" PRINT "(m)ain menu" PRINT "(e)nd" PRINT "(a)gain" DO LOOP UNTIL ((INKEY$ = "a") OR (INKEY$ = "b") OR (INKEY$ = "m") OR (INKEY$ = "e")) IF INKEY$ = "a" THEN GOTO d IF INKEY$ = "b" THEN GOTO menu IF INKEY$ = "m" THEN GOTO e IF INKEY$ = "e" THEN END CASE ELSE CLS PRINT "Wrong Choice" END SELECT e: GOTO mmenu CASE 1 RANDOMIZE TIMER CLS 'MIND MAKER IS COPYRIGHTED COREY 2006 - 2007 'QBASIC VERSION 'MIND MAKER QBASIC VERIONS 1.0 '----------------------------------------- '----------------------------------------- i$ = INKEY$ PRINT "MIND MAKER" PRINT PRINT "Press space to continue." DO LOOP UNTIL INKEY$ = " " CLS PRINT "This is one of unknown copys of MIND MAKER qbasic verion 1.0" PRINT "No copy of this program can be made or placed on sites without permission." PRINT "Thanks you" PRINT PRINT "Press space to continue." DO LOOP UNTIL INKEY$ = " " beg: CLS PRINT "Think of a YES or NO question and PRESS SPACE" DO LOOP UNTIL INKEY$ = " " CLS a = INT(RND * 12) + 1 SELECT CASE a CASE 1 PRINT "Yes" CASE 2 PRINT "No" CASE 3 PRINT "Hell no" CASE 4 PRINT "Of course" CASE 5 PRINT "defintely" CASE 6 PRINT "Always" CASE 7 PRINT "Ask again" CASE 8 PRINT "Never" CASE 9 PRINT "Absolutely" CASE 10 PRINT "Why not" CASE 11 PRINT "Sorry did not hear your thought" CASE 12 PRINT "Yep" CASE 13 PRINT "If you think so" END SELECT PRINT PRINT "Thank you for using Corey Y's program" PRINT PRINT "(t)ry again" PRINT "(e)xit" PRINT "(m)enu" DO i$ = INKEY$ LOOP UNTIL ((i$ = "t") OR (i$ = "e") OR (i$ = "m")) IF i$ = "t" THEN GOTO beg IF i$ = "e" THEN END IF i$ = "m" THEN GOTO mmenu CASE 2 CLS PRINT "TIME AND DATE DISPLAYER" PRINT clo: DO CLS PRINT "Press to stop the clock" PRINT PRINT "*************************" PRINT "* * *" PRINT "* Time: * Date: *" PRINT "* * *" PRINT "* * *" PRINT "* "; TIME$; " * "; DATE$; " *" PRINT "* * *" PRINT "*************************" SLEEP 1 LOOP UNTIL INKEY$ = "s" PRINT PRINT "(m)enu" PRINT "(e)nd" PRINT "(s)tart the clock again" DO i$ = INKEY$ LOOP UNTIL ((INKEY$ = "m") OR (INKEY$ = "e") OR (INKEY$ = "s")) IF INKEY$ = "e" THEN END IF INKEY$ = "m" THEN GOTO e IF INKEY$ = "s" THEN GOTO cl cl: GOTO clo CASE 4 CLS PRINT STRING$(80, "~") PRINT STRING$(80, "~") PRINT PRINT "Press Space To Continue" PRINT PRINT STRING$(80, "~") PRINT STRING$(80, "~") DO in$ = INKEY$ LOOP UNTIL ((in$ = " ")) CLS PRINT PRINT "QWord" PRINT "~-~-~" PRINT "This Was Made By " PRINT "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" PRINT "This Is A Very Basic Word Program." PRINT "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" GOSUB mm me: CLS mm: PRINT "(i)nstructions" PRINT "(c)ontinue" PRINT "(e)xit" PRINT "(m)ain menu" DO in$ = INKEY$ LOOP UNTIL ((in$ = "i") OR (in$ = "m") OR (in$ = "c") OR (in$ = "e")) IF in$ = "m" THEN GOTO e IF in$ = "i" THEN GOSUB pg1 IF in$ = "c" THEN GOSUB c IF in$ = "e" THEN END pg1: CLS PRINT "Instrutions sheet PG1" PRINT PRINT "QWord" PRINT PRINT PRINT "Moving around:" PRINT "To move around PRESS what the KEY it says to PRESS." PRINT PRINT "Entering text:" PRINT "Enter text just like entering it in NOTEPAD." PRINT PRINT "Running out of space to type:" PRINT "If you run out of space PRESS the KEY it says to make more space." PRINT PRINT "Choosing:" PRINT "APPEND version is to add more to the last note you made." PRINT "OUTPUT version is to delete and start again with you note space." PRINT PRINT "(n)ext" PRINT "(b)ack to menu" PRINT "(e)xit" DO in$ = INKEY$ LOOP UNTIL ((in$ = "n") OR (in$ = "b") OR (in$ = "e")) IF in$ = "n" THEN GOSUB pg2 IF in$ = "b" THEN GOSUB me IF in$ = "e" THEN END pg2: CLS PRINT "QWord" PRINT PRINT "Information About:" PRINT "QWord" PRINT PRINT "Version 1.0" PRINT "2006" PRINT "10/06/06" PRINT PRINT "(p)revious" PRINT "(b)ack to menu" PRINT "(e)xit" DO in$ = INKEY$ LOOP UNTIL ((in$ = "p") OR (in$ = "b") OR (in$ = "e")) IF in$ = "p" THEN GOSUB pg1 IF in$ = "b" THEN GOSUB me IF in$ = "e" THEN END c: CLS PRINT "(o)UTPUT" PRINT "(a)PPEND" PRINT "(v)iew last added note" PRINT "(e)xit" PRINT "(m)ain menu" DO in$ = INKEY$ LOOP UNTIL ((in$ = "o") OR (in$ = "m") OR (in$ = "a") OR (in$ = "v") OR (in$ = "e")) IF in$ = "o" THEN GOTO oput IF in$ = "a" THEN GOTO apnd IF in$ = "v" THEN GOTO vw IF in$ = "e" THEN END IF in$ = "m" THEN GOTO e oput: OPEN "note.txt" FOR OUTPUT AS #1 PRINT "When finished/ran out of space PRESS enter." INPUT "Enter Text Here: "; text$ PRINT "(f)inish" PRINT "(m)ore" DO in$ = INKEY$ LOOP UNTIL ((in$ = "f") OR (in$ = "m")) IF in$ = "f" THEN GOSUB fin IF in$ = "m" THEN GOSUB med fin: PRINT #1, text$ CLOSE #1 GOSUB menu PRINT #1, text$ med: CLOSE #1 OPEN "note.txt" FOR APPEND AS #1 INPUT "More Text Here: "; text$ PRINT #1, text$ PRINT "(b)ack to menu" PRINT "(m)ore" CLOSE #1 DO in$ = INKEY$ LOOP UNTIL ((in$ = "b") OR (in$ = "m")) IF in$ = "b" THEN GOSUB me IF in$ = "m" THEN GOSUB med apnd: OPEN "note.txt" FOR APPEND AS #1 mor: INPUT "Add more to your notes: "; text$ PRINT "(m)ore" PRINT "(f)inish" PRINT #1, text$ CLOSE #1 DO in$ = INKEY$ LOOP UNTIL ((in$ = "m") OR (in$ = "f")) IF in$ = "m" THEN GOSUB mor IF in$ = "f" THEN GOSUB me vw: OPEN "note.txt" FOR INPUT AS #1 INPUT #1, text$ PRINT text$ CLOSE #1 PRINT "(b)ack to menu" PRINT "(e)xit" PRINT "(t)he main menu" DO in$ = INKEY$ LOOP UNTIL ((in$ = "b") OR (in$ = "t") OR (in$ = "e")) IF in$ = "b" THEN GOSUB me IF in$ = "e" THEN END IF in$ = "t" THEN GOTO e END SELECT