Wie in dem WIki-Artikel beschrieben, kann man z.B
Code:
' beispiel für 24 Adress-Instanzen
DIM plz ( 24) AS word
DIM ort ( 24) AS string * 12

dim arbeitsplatz as byte
dim wohnung  as byte

           arbeitsplatz = 12
           wohnung     = 3

           plz(arbeitsplatz) = 2344
           ort(arbeitsplatz) = "Maloche"

           plz(wohnung) =  plz(arbeitsplatz)    ' analog wohnung.plz =  arbeitsplatz.plz
was da fehlt, ist der Gesamtbegriff "adresse" (plz,ort)
denn irgendeine OverlayKonstruktion geht bei dieser Methode nicht.