Assume that i=the index value of the array element to
delete, and n = the number items. Then:

[/code]
for k = i to n-1
arrayelement(k,0)=arrayelement(k+1,0
next k
arayelement(k,0)=nothing
[/code]


Should work

DerFarm