Hi Rene,
thanks for the app.
first problem is that you're using DOS style procedure prototyping.
Take setSetting procedure for example.
you have
Prototype: (string,string)
Parameters: (pEntry,pValue)
This is basically wrong. What you should have is
(String pEntry,String pValue)
in both places.
GetSetting is the other affected procedure. Except that in GetSetting the parameter is P1, and the code thinks it's called pEntry.
cheers
Bruce