Feature request: Sounds/Vibrate

zeeter
2009-12-05 04:33:05
So...will feature ever be implemented? like sounds on messages/private messages..and vibrate as well. Would love to see more features be added. I would prob pay for the client if it continued to get updates/support.
Gargaj
2009-12-05 21:58:46
Sounds are planned, vibration if I find an API.
ief015
2010-01-02 04:06:15
Viabration is possible with OpenNetCF.
The following is VB2005, using OpenNETCF 2.1

Imports OpenNETCF.WindowsCE
Public Class Form1
Dim v As Boolean = False
Dim vibe As New Notification.Led

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If v Then
Button1.Text = "Activate"
v = False
vibe.SetLedStatus(1, OpenNETCF.WindowsCE.Notif ication.Led.LedState.Off)
Else
Button1.Text = "Deactivate"
v = True
vibe.SetLedStatus(1, OpenNETCF.WindowsCE.Notif ication.Led.LedState.On)< br /> End If
End Sub
End Class
Gargaj
2010-01-02 20:53:25
http://delphi-ce.blogspot .com/2007/09/vibrating-yo ur-pocketpc-device.html looks more like it actually - I'll consider it.
ief015
2010-01-02 22:55:13
Great! I'd love to see this feature added in a future release.

Post new comment

Name:
Website:
Comment:
Verification: 55 + 13 + 6 =