|
|
|
|
|
AppVersionInfo (Function) In french: AppliInfoVersion
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. 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.
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> = 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 you want to get. Note: Available version numbers can be found by pressing AppListVersion.. <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
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|