use the telephone to make calls from a telephone number field in Access

G

Gene Hensley

Dialing from Outlook is simple and easy. I need that
ability in Access. How can i do that?
 
P

Paul Overway

You need to make an API call...see code below

'TAPI dialer
Private Declare Function TAPI_Make_Call _
Lib "tapi32.dll" Alias "tapiRequestMakeCall" _
(ByVal stNumber As String, ByVal stDummy1 As String, ByVal stDummy2
As String, _
ByVal stDummy3 As String) As Long

Function MakeTAPICall(PhoneNumber As String) As Long

On Error Resume Next

MakeTAPICall = TAPI_Make_Call(PhoneNumber, "", "", "")

End Function
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top