ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Application update functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Warning
From version 23, AppliListVersion is kept for backward compatibility. This function has been replaced with AppListVersion.
Lists the versions available on the reference setup server. These versions are available in the history of the reference setup.
Note: This function can only be used with a network installation on a local area network.. It cannot be used with a setup by IP.
Example
Res is string = AppListVersion()
IV is InfoVersion

AfficheInfo is string = [
Numéro = %1
Date = %2
Taille = %3 octets
Commentaire = %4
Actif = %5
Forcé = %6
Interdite = %7
]

FOR EACH STRING MaChaîne OF Res SEPARATED BY CR
	IV = AppVersionInfo(MaChaîne)
	Trace(StringBuild(AfficheInfo, ...
		IV.VersionNumber, IV.Date, ...
		IV.Size, IV.Comment, ...
		IV.Enabled, IV.Forced,IV.Forbidden))
	Trace("===============================================")
END
Syntax
<Result> = AppListVersion([<Application path>])
<Result>: Character string
List of available versions separated by CR characters (Carriage Return). This list has the following format:
<Version number 1> + CR + <Version number 2> + CR + ...
+ CR + <Version number N>
<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
Component: wd300std.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/28/2025

Send a report | Local help