A little update on the problem.
I found a chinese guy who's able to speak a few more words english and it seems the problem was caused by adding qoutes arround the textfield (Quotes where needed else the leading spaces in front of the text would get stripped)
It seems that the following code causes the problem:
if (description<>'') and ((description[1]='"') and (description[length(description)]='"')) then
description:=copy(description,2,length(description)-2);
description is of type ansistring
Also, one question, I see there's DOM, but also laz_dom and laz2_dom. I currently make use of DOM, would I get better results if I used laz2_dom ?