I am using VS2005 Express to develop a page that when loaded on a Symbol MC5040 w/ PocketPC 2003 OS will make the pda vibrate. Below is the code I am using (copied form various website examples).
Dim vib As New OpenNETCF.WindowsCE.Notification.Led
'---start vibration---
vib.SetLedStatus(2, OpenNETCF.WindowsCE.Notification.Led.LedState.On)
System.Threading.Thread.Sleep(500)
'---stop vibration---
vib.SetLedStatus(1, OpenNETCF.WindowsCE.Notification.Led.LedState.Off)
When I try to view the page on the Symbol pda I get the following error:
Unable to load DLL 'coredll.dll': the specified module could not be found.
How do I resolve this problem? I have had very little success finding/understanding any answers on the web. I even tried using the SmartDevice option via: OpenNETCF.WindowsMobile.Vibrate.Play(). That just gave me a aygshell error. Thanks.