I downloaded that attached database, and there are a lot of compile errors in it. Many of these are caused by code references to non-existent form controls. For example, the code for frmEmail refers to a control called Me.chkTicketAssigned, but there is no control called chkTicketAssigned on the form so you get an error. There are many errors like that (I did not look for all of them), and you are going to have to clean up the code.



In case you were not aware of it, deleting a form control does not automatically delete any event code associated with it. You have to do that yourself, and you should only delete the control after you have deleted the code.