Notes for the file keylist:


^ means control.  You will probably notice that ^pg u (control page up)
has the errorlevel of 4.  Unfortunately, the scan code for ^pg u is 132,
so my formula yields an answer of 260, which is higher than the 255
maximum value for errorlevel.  What this means is that I had to choose
between doing something inconsistent with this one key, and making it
impossible to use both control-D and control-page up in the same batch
file.  My earnest apologies to you if those are two of your favorite
keys.

Remember that if you use the c option to turn off case sensitivity, you
must look up the letters you use in the capital letter section, because
what the c option does is to convert lowercase letters to their
uppercase equivolents.  Thus, the letter y, if the c option is used,
will return the same errorlevel as Y, which is 89.
