I am a new use of AMC and not so expert with scripting so I hope someone will help with my problem.
I am creating a new print report (2-pass report) and since the field [Description] can contain a big text I want to truncate it just to show a preview of the trama...
In the memo field I checked the Script box and in the activated window I put:
Code: Select all
begin
des := [Description];
sht_des := copy([des],1,200)+'...';
end;
Now, this code runs without errors but for each movie the report shows me just the description of the first movie selected (or the first movie of my db).
Some one can help me to work this issue out?
[/code]