Hey,

I used collection, to make object list.

dim v as new collection

I add items using key.

v.add(object, key)

Key is unique integer.

After I add (or replace) item, I need to remove all other items, which key is bigger.

How to do this?

Maybe I should use other class (not collection)?