How to test phone incoming call on wm5.0 smartphone Emulator using visual Studio 2005

Dear All,

I am developing an application for smartphone using visual studio 2005.It includes phone incoming call notification.I am unable to test incoming call notification on Emulator as we cannot have multiple instances for an Emulator.

Is there any possible way to test incoming call notification?

help me please,

Thanks.

[333 byte] By [Amarender] at [2007-12-16]
# 1
See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnppcgen/html/callevents.asp for how to do this on 2003 devices. For Magneto, we'll be releasing a tool which does the same thing in a few months

Sriram

SriramKrishnanMSFT at 2007-9-9 > top of Msdn Tech,Smart Device Development,Smart Devices VB and C# Projects...
# 2
Is there a way to do that on a windows mobile 5.0 device emulator? callevents fails to do so
Dinana at 2007-9-9 > top of Msdn Tech,Smart Device Development,Smart Devices VB and C# Projects...
# 3
Magneto is the same as Windows Mobile 5 (It's the name it had before it was released)
Rokke at 2007-9-9 > top of Msdn Tech,Smart Device Development,Smart Devices VB and C# Projects...
# 4
Is the tool for WM5.0 available now?
TerenceLee at 2007-9-9 > top of Msdn Tech,Smart Device Development,Smart Devices VB and C# Projects...
# 5
You need to use the TAPI API using VC++ and its classes use callback functions and so it could not be wrapped easily, you need to write your own wrapping code.

I did a project involving such functionality and decided to create a thread off from a dll which registers itself with TAPI for receiving TAPI messages (events) including incoming calls. The rest of the logic & functionalities I did in .net C#.

Dinana at 2007-9-9 > top of Msdn Tech,Smart Device Development,Smart Devices VB and C# Projects...