|
|
|
|
|
AppUPDAvailable (Function) In french: AppliMAJDisponible
Warning
From version 23, AppliUPDAvailable is kept for backward compatibility. This function has been replaced with AppUPDAvailable.
Allows you to find out whether an update is available for the specified application. IF AppUPDAvailable() = appUPDAvailMandatory THEN
IF YesNo("Une mise à jour de l'application est disponible.", ...
"Voulez-vous effectuer cette mise à jour ?") = Yes THEN
AppInstallUPD()
END
END
Syntax
<Result> = AppUPDAvailable([<Application path>])
<Result>: Integer constant Returns:- 0 if an error occurred when searching for the update. To get more details on the error, use ErrorInfo.
- one of the following constants:
| | appUPDAvailMandatory | A mandatory update is available. | appUPDAvailOptional | An optional update is available. | appUPDNotAvail | No updates are available. |
<Application path>: Optional character string Full path of executable to use. If this parameter is not specified, the current application will be handled. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|