timer status=on $recno = 0 # clear out the internal number 1 buffer and create our "big" variable at the same time. $big = addstr(1,"clear") goto position=top While not($_eol) $recno = $recno + 1 # this line of code just populates our "internal buffer". $big always returns an empty string here $big = addstr(1,"add",$d_shortdescription + $d_longdescription + $d_Url) IF frac($Recno/20) = 0 ShowStatus msg="Processing record $recno of $_count" endIf goto position=next EndWhile # Finally we retrieve the data from our "internal buffer" to use in the macro $big = addstr(1,"get") Goto Position=Top timer status=off |