>when programming my glade2pas I needed a hash/dictionary type, like in >perl or python. >Does FreePascal "know" these types? No, you have to create them yourself. You can have a look at the file cobjects.pas of the compiler, it implements a hashed dictionary. Or maybe use the FCL, I suppose it may also contain hashed collections/dictionaries. Jonas