AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones varias de Windows
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
MakeInteger (Function)
In french: ConstruitEntier
Builds a 4-byte integer from two 2-byte integers.
Example
Value is int = 5000
Low is int on 2 = LoWord(Value)
High is int on 2 = HiWord(Value)
// Rebuilds the value from these high bytes and low bytes
ValueBuilt is int = MakeInteger(High, Low)
// ValueBuilt is equal to Value
Syntax
<Result> = MakeInteger(<High Byte> , <Low Byte>)
<Result>: Integer
Integer value (4 bytes) built from the concatenation of <High Byte> and <Low Byte>.
<High Byte>: 2-byte integer
Value that will define the 2 high bytes of <Result>.
<Low Byte>: 2-byte integer
Value that will define the 2 low bytes of <Result>.
Business / UI classification: Neutral code
Component: wd290mat.dll
Versión mínima requerida
  • Versión 11
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local