shah <shahjagat@[EMAIL PROTECTED]
> opined
>Hi,
>
>Is there a way of making a VFP application dial a phone # and play a
>standard audio message? Anyone know of any active X control or some
>way to achieve this.
Do you mean play a message over the phone? or to the user?
I was given a very helpful routine here for calling the Windows Dialler
that I use as a routine (or subr) from my master data file ('mast') in
vfp3:-
****** Tapitest.prg *******
declare long tapiRequestMakeCall in "tapi32.dll";
string DestAddress,;
string AppName,;
string CalledParty,;
string Comment
store trim(mast.phone) to TlfNumber
store trim(mast.company) to CalledParty
xnOK=tapiRequestMakeCall([&TlfNumber], [], [&CalledParty],
[C:\WINDOWS\DIALER.EXE])
****** *******
Mike
[The reply-to address is valid for 30 days from this posting]
--
Michael J Davis
Pictures at http://www.flickr.com/photos/watchman/
<><
For this is what the Lord has said to me,
"Go and post a Watchman and let
him re****t what he sees." Isa 21:6
<><


|