Bei diesem konkreten Beispiel is die Reihenfolge egal
Is das gleiche Ergebnis wieCode:Dim Koordbytes(4) As Byte
Dim Koordinate As Long At Koordbytes Overlay
Bei einzelnen byte-dims geht es aber nur soCode:Dim Koordinate As Long
Dim Koordbytes(4) As Byte At Koordinate Overlay
Deshalb hab ich mir angewöhnt, immer nachher das längere "DIM" drüberzuklatschen.Code:Dim Koordbyte_1 As Byte
Dim Koordbyte_2 As Byte
Dim Koordbyte_3 As Byte
Dim Koordbyte_4 As Byte
Dim Koordinate As Long At Koordbyte_1 Overlay
