If you don't have groups, insert a text box with text "Continued from Previous Page". Then create two formulas:
//{@flag1} to be placed in the detail section:
whileprintingrecords;
numbervar flag := 1;
//{@flag0} to be placed in the report footer:
whileprintingrecords;
numbervar flag := 0;
Then right click on the text box->format text->common->suppress->x+2 and enter:
whileprintingrecords;
numbervar flag;
onfirstrecord or
flag = 0
If you have a group, set the group up to "Repeat Group Header on Each Page" and place the text group in the group header. Then format the text box to suppress with the following formula:
not inrepeatedgroupheader
-LB