Bei diesem konkreten Beispiel is die Reihenfolge egal
Code:
Dim Koordbytes(4) As Byte
Dim Koordinate As Long At Koordbytes Overlay
Is das gleiche Ergebnis wie
Code:
Dim Koordinate As Long 
Dim Koordbytes(4) As Byte At Koordinate Overlay
Bei einzelnen byte-dims geht es aber nur so
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
Deshalb hab ich mir angewöhnt, immer nachher das längere "DIM" drüberzuklatschen.