Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VFP and TAPI

Status
Not open for further replies.

insania

Technical User
Feb 11, 2004
53
IE
I have a number of clients wanting to link our VFP app to their phone systems.

Has anyone got any experience of this? What software is needed?

Thanks

Confused As Ever
 
Explore the Way2Call Hi-Phone Desktop device here: (main page, )

and the Exceletel TAPI wrappers here:

(Regular "voice modems" rarely turn out TAPI-compatible enough to work as any more than an answering machine or phone dialer... for example, there's no way to determine when the phone has been picked up on the other end after initiating a call, so some True Telephony device is needed. The HiPhone is the only reasonably-priced one I've found)

(The Exceletel wrappers make TAPI manageable from VFP, where the direct API calls turn into a jungle quickly if you try to use it directly)

- Bill

Get the best answers to your questions -- See FAQ481-4875.
 
declare long tapiRequestMakeCall in "tapi32.dll";
string DestAddress,;
string AppName,;
string CaledParty,;
string Comment

cPhoneNumber="+00420 499 320 708"
? tapiRequestMakeCall(cPhoneNumber,"","","")
 
Bill

Thanks for the information on Exceletel. The most comprehensive solution I have seen so far.

Much Appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top