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.
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#.