AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Gestión de faxes
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
Restarts a fax in the spooler. This function only applies to the pending faxes.
Remark: This function can be used in Windows 2000, XP or later. In Windows Vista, the management of faxes is available in Windows Vista Professional Edition and Windows Vista Ultimate Edition.
Example
ConnectID is int
ConnectID = FaxConnect()
IF ConnectID = 0 THEN
Error("The connection to the fax server failed." + ...
 "Check whether it has been started", ...
ErrorInfo(errSystemMessage))
ELSE
 ListAdd(LIST_FaxSend, FaxOutbox(ConnectID))
END
...
// Click code of the list box
IF FaxStatus(LIST_FaxSend..DisplayedValue) = FaxStatusHandled THEN
 FaxRestart(LIST_FaxSend..DisplayedValue)
END
 
...
FaxDisconnect(ConnectID)
Syntax
<Result> = FaxRestart(<Connection ID> , <Fax name or Fax identifier>)
<Result>: Boolean
  • True if the fax is restarted in the spooler,
  • False otherwise (if the name of the fax does not exist for example).
<Connection ID>: Integer
Connection identifier, returned by FaxConnect.
<Fax name or Fax identifier>: Character string
Corresponds to:
  • the name used to identify the outgoing fax. This name was defined with FaxSend.
  • the fax identifier (returned by FaxOutbox ou FaxInbox)
Component: wd290com.dll
Versión mínima requerida
  • Versión 10
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/06/2023

Señalar un error o enviar una sugerencia | Ayuda local