hi.

i'd like to know, is there a way of checking, if an element of a control array exists, before i perform a Load or Unload.

i know, i can set On Error - but i guess that's not very elegant solution.

the thing is, that i'd like to create a control array in runtime, but the indexes, are not going up constantly.

for example i create an control array like this:
Load ArrayCtl(1)
Load ArrayCtl(68)
Load ArrayCtl(23)
Load ArrayCtl(45)

what i want is to check if element with given index (23 for example) exists, before i do anything with it.

so? what do you think?