Hello. In Visual Studio 2005, I have created project Visual Basic,
Smart Device, Smartphone 2003. On Form1 has placed component Timer with
property Enabled = True. In method Timer_Tick has written down method
Beep() for submission of sound signals.
However, in Start of Smartphone 2003 SE Emulator, signals of metod Beep
do not sound. In the usual project such as Visual Basic, Windows
Application, with the help of method Beep signals sound.
Inform, please, how to program sounds by method Beep in Smartphone Emulator of VS 2005
Beforehand thanks for the answer, Valery, Moskva, Russia.

How to program sounds by method Beep in Smartphone Emulator?
nanocity
In the project, described above, I have written down your code in such kind:
Public Enum PlaySoundFlags
...
End Enum
Public Declare Function PlaySound Lib "CoreDll.dll" ( _
...) As Integer
Private Sub Timer1_Tick(...) Handles Timer1.Tick
PlaySound("SystemAsterisk", IntPtr.Zero, _
PlaySoundFlags.SND_ALIAS)
End Sub
The emulator normally sounds. Many thanks. Zharkov.
sidhuvirgoster
Not sure emulator supports sounds, but real device would if you do this:
http://forums.microsoft.com/MSDN/Search/Search.aspx words=how+to+beep&localechoice=9&SiteID=1&searchscope=forumgroupscope&ForumGroupID=11