ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Phone functions
  • Limitation
  • Required configuration
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
tapiAnswerCall (Function)
In french: telRépondAppel
Answers an incoming call that was detected.
WINDEV The modem picks up and the call can be processed by the modem (via an answerphone for example).
Example
WINDEVReports and QueriesUser code (UMC)
PROCEDURE CallDetection(nServiceID, nCallID, nStatus)
// Picks up the line to answer a call
tapiAnswerCall(nCallID)
// Trigger the answerphone
tapiPlay("answerphone.wav", tapiPlayLock, nCallID)
// If the star key was pressed
// the answerphone is stopped
IF Position(tapiKeyPressed(nCallID), "*") = True THEN
tapiStop(nCallID)
END
Syntax
<Result> = tapiAnswerCall([<Call identifier>])
<Result>: Boolean
  • True if the call was successfully answered to,
  • False otherwise.
<Call identifier>: Optional integer
Identifier of the call to be handled. This identifier is defined in the WLanguage procedure called by tapiListen. The current call is handled if this parameter is not specified.
Remarks

Limitation

tapiAnswerCall cannot be called in the procedure for call detection (defined by tapiListen).

Required configuration

Telephony functions use TAPI 2.0 technology and/or TAPI 3.1 technology. These technologies can be used on all systems.
Component: wd290com.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help