I understand what you are saying. Again, I am speaking of an audio
notification, not visual. My wife is very computer illiterate and has a focus
problem. If I left the computer on with the speakers turned up, she can
depend on a continual audio notification rather than have to remember to
check the messages. For most everyone else, the feature would be a
convenience at best. For her, it would increase productivity since she needs
to be vigilant of incoming messeges. It can only help her to remember to
check. I suppose I could create a rule to forward all incoming to the same
address so that she continually gets an audio notification. :) Seriously, you
have to know my wife to understand how much it would help. She has a lot on
her plate and a constant check of the email would just add to it. It would be
nice if she only needed to go to the computer when she hears the continual
notificatiion....just like an answering machine. Thanks for your comments.
> Hi Dan,
>
[quoted text clipped - 16 lines]
> something or
> > not while they were gone.
Michael Bauer - 17 Nov 2004 15:31 GMT
Hi Dan,
from that Form you could play your own wave file.
Private Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" _
(ByVal lpszName As String, ByVal hModule As Long, ByVal dwFlags As
Long) As Long
Private Const SND_FILENAME = &H20000 ' name is a file name
Private Const SND_ASYNC = &H1 ' play asynchronously
Private Const SND_SYNC = &H0 ' play synchronously (default)
Sub PlaySoundForWifeVeryLong()
PlaySound "YourSound.wav", ByVal 0&, SND_FILENAME Or SND_SYNC
end sub
In addition you could add a cancel-button. As long as it isn´t pressed
you can replay the sound.

Signature
Viele Grüße
Michael Bauer
> I understand what you are saying. Again, I am speaking of an audio
> notification, not visual. My wife is very computer illiterate and has a focus
[quoted text clipped - 30 lines]
> > something or
> > > not while they were gone.