Hi all,
I'm trying to put a notification into my compact framework 2.0 application that allows me to inform the user when they've received a new job.
I've tried to use the following code with the latest community edition of SDF:
try
{
OpenNETCF.WindowsMobile.Vibrate.Play();
Thread.Sleep(duration);
OpenNETCF.WindowsMobile.Vibrate.Stop();
}
catch
{
// Ignore
}
No error actually fires, however on the play event, the vibrate doesn't work. Also, I've not worked out a way to play the default message alert - or a sound file. Is any of this possible?