Plug and Play Modem Dialing
Let the Windows Telephony API (TAPI) do all the hard work for you. With Sax CommStudio, you never have to worry about modem setup again.
In addition to modem device independence, your users will also enjoy automatic handling of dialing rules based on the user's location and area code.
Make your application easier to use
Reduce technical support and increase end user satisfaction by using the settings defined in the the Windows Control Panel.
Modem Information At Your Fingertips
Sax CommStudio provides simple access to the Windows Telephony API (TAPI) though an elegant object model. For example, to show a list of available modems in the system, you can use the following code:
Dim modem As CommStudio.Connections.ModemInfo For Each modem In CommStudio.Connections.ModemInfo.Modems ModemList.Items.Add(modem) Next
Once the user has selected a modem, dialing a number and establishing a connection is very easy:
ModemConnection1.PhoneNumber = "+1 (541) 555-1234" ModemConnection1.Open()
Sax CommStudio automatically dials the correct number based on the current location defined in the Windows Control Panel. Once the connection is established, you can start sending and receiving data.
