C
Chuck
Hello,
I have a report based on a query that has 10 rows with specific text that I
would like to have special formatting. Such as increase both the row spacing
and font size.
In the Report On Format Event I check for the text and then use the Height
and TopMargin to do this.
My problem is that the remainder of the report now has those settings and I
would like to get it back to Font of 10 with single spacing.
Is there a way to set the balance of the rows back to the report default?
Here is my code for one of the 10 special rows.
If Heading = "Income Received for Fiscal Year" Then
Me.Heading.FontSize = 12
Me.Heading.ForeColor = 0
Me.Heading.Height = 500
Me.Heading.TopMargin = 150
Me.YTD.FontSize = 12
Me.YTD.ForeColor = 0
Me.YTD.Height = 500
Me.YTD.TopMargin = 150
Me.Mth.Height = 500
Me.Mth.TopMargin = 150
Me.Mth.FontSize = 12
End If
Thanks
Chuck
I have a report based on a query that has 10 rows with specific text that I
would like to have special formatting. Such as increase both the row spacing
and font size.
In the Report On Format Event I check for the text and then use the Height
and TopMargin to do this.
My problem is that the remainder of the report now has those settings and I
would like to get it back to Font of 10 with single spacing.
Is there a way to set the balance of the rows back to the report default?
Here is my code for one of the 10 special rows.
If Heading = "Income Received for Fiscal Year" Then
Me.Heading.FontSize = 12
Me.Heading.ForeColor = 0
Me.Heading.Height = 500
Me.Heading.TopMargin = 150
Me.YTD.FontSize = 12
Me.YTD.ForeColor = 0
Me.YTD.Height = 500
Me.YTD.TopMargin = 150
Me.Mth.Height = 500
Me.Mth.TopMargin = 150
Me.Mth.FontSize = 12
End If
Thanks
Chuck