Oh my god I posted three times and had to edit them all, my mind is just not with me today...lol
It's pretty good coding, only one tiny problem. When you wrote
Quote: "IF letter$=a then gosub good"
you were directing "letter$" to a variable named "a." There is no variable "a" because that would imply that "a" is a whole number. Your "a" is a string, so it should be changed to
Quote: "IF letter$=a$ then gosub good"
(If you finish this program and put in Subroutines B and C, remember to make those strings in that section of code as well.)
After you do that, you have to either slap a "Rem" on the front of
Quote: "If letter$="b" then gosub sad"
and
Quote: "If letter$="c" then gosub bored"
or just write "sad:" and "bored:" at the bottom of your source, because DBPro looks for all required labels before compiling.
Go back and try to do those things to your code. I have attached a working version of it with the changes I mentioned, but it would be much better for you to do yourself manually.
Happy new years
_Carl
Don't leech graphics and code! Make your own or you'll never learn...