The first error that pops up is in module "ParsePerformer". The top line is "Compare Database". It should be "Option Compare Database".
EVERY module (standard, form and Report) should have
Code:
Option Compare Database
Option Explicit
as the top two lines.
In the IDE, click on "TOOLS/Options", In the dialog box, click on "Require Variable Declaration".
This will add "Option Explicit" to every NEW code module.
Add "Option Explicit" to every code module.
Once you add "Option Explicit", do a "Debug/Compile". You will be shown the errors (2 variables not declared - 1 variable misspelling).