Level break events

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anyone help me with this? I have a report which contains a level break
on the customer field at which time a new page is started. Is there an event
that fires on level breaks where I can cause some of the controls on the
report to be invisible only on the first page of each customer's information?

Thanks in advance
 
Glenn said:
Can anyone help me with this? I have a report which contains a level break
on the customer field at which time a new page is started. Is there an event
that fires on level breaks where I can cause some of the controls on the
report to be invisible only on the first page of each customer's information?


The Group header section's Format event cam be used to make
them invisible. Not sure where you want to make them
visible again, perhaps the detail section's Format event?
 
Thanks for the reply, Marshall. I thought that was going to work for a
minute. But I need the page header controls to disappear at the top of every
page that starts a new customer and putting the code in the group header
format event turned them off AFTER the page header was already printed. The
detail format event apparently turned them back on for the second page but
I'm still back where I was with the controls printing on top of the first
customer page. Is there no place to turn them off say, before a page break?

Thanks again,
Glenn
 
Ahhh, the controls are in the page header. In that case,
try making them invisible in the Report header Format event
(for the first group) AND in the group footer's format event
(for the next group). In this case, the group header is
probably the best place to make them visible again.
 
Back
Top