|
|
|
|
WindowsVersion (Function) In french: VersionWindows Returns the runtime mode of Windows.
// Find out the Windows version: 32 or 64-bit Version is int Version = WindowsVersion() SWITCH Version CASE 32: Info("Windows is run in 32 bits") CASE 64: Info("Windows is run in 64 bits") END
Syntax
<Result> = WindowsVersion()
<Result>: Character string Returns the runtime mode of program in the current environment:- "32": the program operates in 32-bit mode in a 32-bit environment.
- "64": the program operates in 32-bit or 64-bit mode in a 64-bit environment.
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|