Many Thanks RobDog ...

For clarification unto future generations ...
Insert this into the declaration area at the very top of your module:
Code:
Private Declare Sub Sleep Lib "kernel32.dll" (ByVal dwMilliseconds As Long)
Here is the inline code:
Code:
DoCmd.Beep  'or whatever
Sleep(400)
DoCmd.Beep  'or whatever
Sleep(400)
DoCmd.Beep  'or whatever