Search found 1 match

by billjets
2009-05-14 23:11:44
Forum: Ant Movie Catalog > Help
Topic: Error in my Script
Replies: 1
Views: 864

Error in my Script

In the Report Writer, I am trying to convert the movie Length to hours:minutes. Using the following script, I get a
"List index out of bounds" message.

begin
[Minutes] = [Length]
if [Length] > 60 then
[Hours] = [Length] \ 60
[Minutes] = [Length] Mod 60
end;

I appreciate any help I can get with ...