ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Application update functions
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
Warning
From version 23, AppliDeleteVersion is kept for backward compatibility. This function has been replaced with AppDeleteVersion.
Deletes a version from the history of versions found on the reference setup server.
Caution: This function is irreversible: the setup files of the corresponding version will be deleted from the reference setup server.
Remark: This function can only be used with a network setup on a local network. It cannot be used with a setup by IP.
Example
// Creates the list of available versions
ListVersions is string
ListVersions = AppListVersion()
// Extract the first version
FirstVersion is string
FirstVersion = ExtractString(ListVersions, 1, CR)
// Delete version
IF AppDeleteVersion(FirstVersion) = False THEN
Error("Error deleting the version " +  ...
FirstVersion + CR + ErrorInfo())
END
Syntax
<Result> = AppDeleteVersion(<Version> [, <Executable>])
<Result>: Boolean
  • True if the deletion was successfully performed,
  • False otherwise. To get more details on the error, use ErrorInfo.
Remarks: The possible error causes are as follows:
  • the history of versions is not enabled.
  • the requested version does not exist.
  • the deleted version corresponds to the version currently used. In this case, the active version can be changed by AppActivateVersion.
<Version>: Character string
Number of the version to delete.
<Executable>: Optional character string
Full path of the executable of application for which the version must be deleted. If this parameter is not specified, the current application is handled.
Remarks
AppDeleteVersion must be used by a user who has the rights to access the reference setup server in write mode.
Component: wd290std.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help