ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Application update functions
  • Properties specific to InfoVersion variables
  • 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
InfoVersion (Type of variable)
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
Remarks

Properties specific to InfoVersion variables

The following properties can be used to handle an InfoVersion variable:
Property nameType usedEffect
EnabledBoolean
  • True if the version is enabled (which means visible by the client computers),
  • False otherwise.
This property is read-only.
AndroidiPhone/iPadIOS WidgetMac Catalyst This property is not available.
CommentCharacter stringInformation regarding the new features of 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.
AndroidiPhone/iPadIOS WidgetMac Catalyst This property is not available.
ForbiddenBoolean
  • True if this version is forbidden,
  • False if the version is allowed.
This property is read-only.
AndroidiPhone/iPadIOS WidgetMac Catalyst This property is not available.
VersionNumberCharacter stringNumber of the version.
This property is read-only.
SizeIntegerSize of the version on disk (in bytes).
This property is read-only.

Functions

The following functions can be used to handle an InfoVersion variable::
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: 01/26/2023

Send a report | Local help