Hello Muzaffer,
> I have found out, that removing an element of a list is not
> implemented. So I have decided to write my own remove method, but I
> failed in two points. I tried to make a for-loop, in which I loop
> through the list and all elements that I want to keep in the list, I
> copy to another list. Here the two problems:
>
> 1. I cannot find out, how many elements a list has (list.size(),
> list.length(),...??)
> 2. How can I read the entry of an element?
there is a remove method!
d list.RemoveAt(1)
Also you have a Clear() method.
Looping through a list:
s key=""
f {
s key=list.Next(key)
q:key=""
s element=list.GetAt(key)
}
You can the count by invoking Count() ;-)
HTH
Florian