Dialing number in .NET

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi everyone!

I have a question. How can I work with modem in .NET from C#. Do I have to
call to TAPI functions from my C# program, or there is another way to do it
in .NET?

Best regards
Igor.
 
Igor said:
Hi everyone!

I have a question. How can I work with modem in .NET from C#. Do I have to
call to TAPI functions from my C# program, or there is another way to do
it
in .NET?

You will have to either use PInvoke to call them or find an existing library
that already provides wrappers. IF there is a COM object for TAPI, you may
be able to use that as well.

There is currently no support for TAPI, however.
 
Thanks !

Daniel O'Connell said:
You will have to either use PInvoke to call them or find an existing library
that already provides wrappers. IF there is a COM object for TAPI, you may
be able to use that as well.

There is currently no support for TAPI, however.
 
Yes you can.

TAPI 3.0 uses COM, so you could use these component from any programming
languages. Also Tapi3.0 support PSTN as well as VoIP.

I suggest you use it because it is the standard way to programming
telephony in windows.
 
Back
Top