MAKEINT/de

(Difference between revisions)
Jump to: navigation, search
m (1 revision)
((**COPIED FROM ENGLISH PAGE**) =)
Line 1: Line 1:
== (**COPIED FROM ENGLISH PAGE**) === <span class="f_Header">Action</span> =
+
= <span class="f_Header">Funktion</span> =
  
Compact two bytes into a word or integer.
+
Kombiniert zwei Variablen vom Typ Byte zu einem Word oder Interger.
  
 
<span style="font-family: Arial;">&nbsp;</span>
 
<span style="font-family: Arial;">&nbsp;</span>

Revision as of 12:55, 22 February 2013

Contents

Funktion

Kombiniert zwei Variablen vom Typ Byte zu einem Word oder Interger.

 

 

Syntax

varn = MAKEINT(LSB , MSB)

 

 

Remarks

Varn

Variable that will be assigned with the converted value.

LSB

Variable or constant with the LS Byte.

MSB

Variable or constant with the MS Byte.

 

The equivalent code is:

varn = (256 * MSB) + LSB

 

 

See also

LOW , HIGH , MAKEBCD , MAKEDEC

 

 

Example


Dim A As Integer , I As Integer
A = 2
I = Makeint(a , 1) 'I = (1 * 256) + 2 = 258
End

Languages   English Deutsch  
Personal tools
Namespaces
Variants
Actions
Navigation
In other languages
Language