Hi again,
I guess the suppress option is new in 10.5 because I have not seen it in PB 10.0's help.
I have a solution for you to try though... it is not perfect but you may find it works for you:
with a boolean instance variable ib_FirstOnly
in your ue_print event:
Long ll_job
ll_Job = Printopen()
ib_FirstOnly= True
// set group header to show on first page
dw_1.Object.datawindow.header.group1.height = '300'
Printdatawindow(ll_Job, dw_1)
ib_FirstOnly= False
// set group header to 0 to hide for the other pages.
dw_1.Object.datawindow.header.height = '0'
Printdatawindow(ll_Job, dw_1)
Printclose(ll_Job)
...
This is a little more complex than a print() command but if you put this code in the printpage event of dw_1 then voila
If ib_FirstOnly Then
If pagenumber = 1 then
Return 0
Else
Return 1
End if
Else
If pagenumber > 1 then
Return 0
Else
Return 1
End if
End if
NOTE that depending on your detail height, this may print the same record on the bottom of page 1 and the top of page 2.
Try it and let us know!

David