print file='today.out'
filename myoutput 'c:\temp\prntfils\today.out';
proc printto print=myoutput;
<---other SAS PROC steps-->
proc printto;
OPTIONS FORMDLIM=' ';
That's single quotes with a space in between.
To turn the pagebreak back on, run this:
OPTIONS FORMDLIM='';
That's single quotes with no space in between.