ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Managing faxes
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Restarts a fax in the spooler. This function only applies to the pending faxes.
Note: This function can only be used under Windows 2000, XP or higher.. In Windows Vista, the management of faxes is available in Windows Vista Professional Edition and Windows Vista Ultimate Edition.
Example
IDConnect is int
IDConnect = FaxConnect()
IF IDConnect = 0 THEN 
	Error("La connexion au serveur de fax a échoué." + ...
		 "Vérifiez que celui-ci est bien démarré", ...
		ErrorInfo(errSystemMessage))
ELSE
	 ListAdd(LISTE_FaxEnvoi, FaxOutbox(IDConnect))
END
...
// Code de clic de la liste
IF FaxStatus(LISTE_FaxEnvoi..DisplayedValue) = FaxStatusHandled THEN
	 FaxRestart(LISTE_FaxEnvoi..DisplayedValue) 
END

...
FaxDisconnect(IDConnect)
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 (obtained using FaxOutbox or FaxInbox)
Component: wd300com.dll
Minimum version required
  • Version 10
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help