ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Miscellaneous Windows 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
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
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help