Error in my Script
Posted: 2009-05-14 23:11:44
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 this.
"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 this.