A
Al
I have an unbound txt box called "Dtxt". I wanted this
text box to show on the first page only if the report will
have more than one page. In that case the [Dtxt] will
equal the value of [ProgressNotesDate] which is a date
field. The problem is: this works in the preview only i.e.
(on the screen) but when I print the [Dtxt] does not show
on the hard copy. I do not know why? since this was
working for some time.
The following code is in PageHeader_Print event:
If Me.Main.WillContinue = True Then
Me![Dtxt] = Me![ProgressNotesDate]
Me![Dtxt].Visible = True
Me![ProgressNotesDate].Visible = False
End If
Thanks
Al
text box to show on the first page only if the report will
have more than one page. In that case the [Dtxt] will
equal the value of [ProgressNotesDate] which is a date
field. The problem is: this works in the preview only i.e.
(on the screen) but when I print the [Dtxt] does not show
on the hard copy. I do not know why? since this was
working for some time.
The following code is in PageHeader_Print event:
If Me.Main.WillContinue = True Then
Me![Dtxt] = Me![ProgressNotesDate]
Me![Dtxt].Visible = True
Me![ProgressNotesDate].Visible = False
End If
Thanks
Al