Hi again, been a while. I need to get text input from the keyboard (or, better yet, from speech-to-text, but that's besides the point) for the project I'm currently working on, and I've got a few problems.
First off, I'd appreciate if someone could tell me how to implement backspace functionality - for those who know Perl, I believe it would be the equivalent of the "chop" function there. You know, just something to cut off the last character in a string. I suppose I might be able to figure this out myself, but it'd be nice to know how it's most easily done (and not have to deal with the MSDN docs as much).
Second, I notice that when I press Q, GameDev quits, just as if I had pressed escape. Is there any way to turn this off without editing GameDev's source code, or am I screwed (in this case) unless I either learn enough to modify GameDev and/or switch to another program? Assuming, of course, that I'll actually wind up wanting to use that letter.
Third, a more minor thing. I'm currently using
Variable = Variable & Chr(KeyCode), assuming that KeyCode is between 32 and 126 inclusive, but I notice that only works correctly for letters, numbers and the spacebar (and the letters are all uppercase). Any easy way to make it print whatever key I press, or should I just change it so that it has to be space, a letter or a number for
Chr(KeyCode) to go off?
And, last, but certainly not least, if someone's already got a sample script ready for just this kind of thing, could you guys tell me so I don't go reinventing the wheel, please

?