Firstly when the user clicks the Time Called button you get a Type Mismatch. This is because you are trying to format a variable that contains no value. So in the code for frmReturnTime I added
pstrTime = Format(Now(), "h:nn AM/PM")
Now frmReturnTime Opens no problem.
I take it that you...