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
  • Properties specific to InfoVersion variables
  • Functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
InfoVersion (Variable type)
In french: InfoVersion
The InfoVersion type is used to find out the characteristics of a specific application version. The characteristics of this version are returned by several WLanguage properties.
Example
sRes is string = AppliListVersion()
IV is InfoVersion

sDisplay is string = [
Number = %1
Date = %2
Size = %3 bytes
Comment = %4
Enabled = %5
Forced = %6
Forbidden = %7
]

FOR EACH STRING MyString OF sRes SEPARATED BY CR
	IV = AppVersionInfo(MyString)
	Trace(StringBuild(sDisplay, ...
		IV.VersionNumber, IV.Date, ...
		IV.Size, IV.Comment, ...
		IV.Enabled, IV.Forced, IV.Forbidden))
	Trace("===============================================")
END
Properties

Properties specific to InfoVersion variables

The following properties can be used to define the characteristics of InfoVersion variables:
Property nameType usedEffect
EnabledBoolean
  • True if the version is enabled (which means visible by the client computers),
  • False otherwise.
This property is read-only.
CommentCharacter stringInformation about new features in this version. This information was specified by the developer. The content of this property can be:
  • a text,
  • a text, RTF or CHM file,
  • a "link" to a help page (help about new features generated when creating the executable).
This property is read-only.
DateDateTimeVersion release date.
This property is read-only.
ForcedBoolean
  • True if the version is forced,
  • False otherwise.
This property is read-only.
ForbiddenBoolean
  • True if this version is forbidden,
  • False if the version is allowed.
This property is read-only.
VersionNumberCharacter stringNumber of the version.
This property is read-only.
SizeIntegerSize of the version on disk (in bytes).
This property is read-only.
Remarks

Functions

The following functions can be used to manipulate a variable of type InfoVersion:
AppVersionInfoReturns information about a version available on the setup server.
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help