Code : Tout sélectionner
Structure TEST
a.l
b.LONG
c.POINT
EndStructure
myvar.TEST
myvar\a = 50
myvar\b\l = 20 ; ici, çà fonctionne (encore heureux)
myvar\c\x = 120
With myvar
\a = 50
\b\l = 20 ; et là le compilateur fait son grognon :-)
\c\x = 120
EndWith
Code : Tout sélectionner
p1.POINT
p2.POINT
With p1
\x = p2\x
\y = p2\y
EndWith