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, AppliVersionInfo is kept for backward compatibility. This function has been replaced with AppVersionInfo.
Returns information about a version available on the 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
Res is string = AppListVersion()
IV is InfoVersion
 
DisplayInfo is string = [
Number = %1
Date = %2
Size = %3 bytes
Comment = %4
Enabled = %5
Forced = %6
Forbidden = %7
]
 
FOR EACH STRING MyString OF Res SEPARATED BY CR
IV = AppVersionInfo(MyString)
Trace(StringBuild(DisplayInfo, ...
IV.VersionNumber, IV.Date, ...
IV.Size, IV.Comment, ...
IV.Enabled, IV.Forced, IV.Forbidden))
Trace("===============================================")
END
Syntax
<Result> = AppVersionInfo(<Application version> [, <Application path>])
<Result>: InfoVersion variable
InfoVersion variable containing the information regarding the specified application version.
<Application version>: Character string
Version number of application whose the information is requested.
Remark: The available version numbers are returned by AppListVersion.
<Application path>: Optional character string
Full path of executable to use. If this parameter is not specified, the current application will be handled.
Android This parameter is not available.
Business / UI classification: Business Logic
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