u5e user exit

The u5e user exit clears the internal BASIC heading and footing so that subsequent heading and footing statements display properly at the top of the next page.

Syntax

var = oconv(’’,’u5e’)

Example(s)

for i = 1 to 2
   printer on
   heading "report #":i
   x = oconv("","u5e")
   for j = 1 to 55
      print "page ":i:", line ":j
   next j
   printer close
   printer off
next i

In this case, the user exit ensures that the heading displays at the top of each page. Current heading functionality was preserved to maintain compatibility with previous releases.