Hallo,
ich habe sonst immer ein Indexarray mit +1 vergrößert. Jetzt wollte ich
es mal verkleinern und stelle fest, das geht nicht. Es wird addiert.
Außer man belegt das Feld vorher mit 0
Warum?
Horst
Sub test1
dim afeld(2)
stext=""
afeld(0)=0
for f=0 to 2
wert=afeld(f)
afeld(f)=afeld(f) -1
wert=afeld(f)
next f
for f=0 to 2
stext = stext & afeld(f) & " : "
next f
PRINT STEXT
end sub
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]