Users wanting to remove the time update prompts (pop-up boxes that announce “Case updated with total time” or “There is no matching case…”) can easily do that.
This is due to a stored procedure sending back the phrase “Case updated…” or “There is no matching case…” This can easily be fixed by searching for the stored procedure in the code; it’s name: SpecificCaseUpdate
You will notice that when it is used, it is typically set to a variable, for example in the inpTime form, it appears thusly:
Set mys = execPassThru(crit, True)
And is then followed by a message box routine to show the value of that variable as such:
MsgBox mys!x
All you need to do is comment out the message box line and those pop up boxes will not longer appear.