could anyone please guide me how to make a conference call from netcf... in Windows Mobile like i have three numbers and i want to dail them for a conference call...
Asked
Active
Viewed 1,169 times
0
-
It might help to talk about the *device* - as it will probably require device-specific servics; after all, xbox runs CF... and isn't a 'phone. – Marc Gravell Jun 01 '09 at 07:35
-
thanks Marc its added as Windows Mobile – Usman Masood Jun 01 '09 at 07:48
2 Answers
2
I've never done this myself, but you will have to use the Telephony API.
You will find in there functions like:
lineSetupConference, lineAddToConference, etc
I would recommend that you read the MSDN sections very closely as TAPI is not very easy to use.
I'm not sure how much access you have with C# and would also recommend that the coding around using these be done in C/C++ and you could expose them in a more simplified API via a DLL.

Shane Powell
- 13,698
- 2
- 49
- 61
0
You can't dial three numbers at the same time on a Windows Mobile device. It probably has only one sim card (two at most if it is a dual-sim device).
Usually conference calls are managed by third parties or some kind of phone server that allows multiple people to dial in.

Tom van Enckevort
- 4,170
- 1
- 25
- 40
-
some companies allows mutli number or con calls.. so if you have such service enabled than what is the scenario? – Usman Masood Jun 01 '09 at 08:53
-
Good point, I didn't realize that this was the case. Then I think the TAPI answer might be a good one. – Tom van Enckevort Jun 01 '09 at 09:04