D
Dwight
How can I programatically determine what section the
report is in, using the On Page event?
Here is an example of what I have tried:
*********************************************
Private Sub Report_Page()
If Me.Report.Page = 0 Then
Else
If Me.Section.Name = "Detail" Then
Me.PageHeaderSection.Visible = True
Me!tbNameLine.Height = 555
Else
End If
End If
End Sub
****************************************************
Thanks in advance!
Dwight
report is in, using the On Page event?
Here is an example of what I have tried:
*********************************************
Private Sub Report_Page()
If Me.Report.Page = 0 Then
Else
If Me.Section.Name = "Detail" Then
Me.PageHeaderSection.Visible = True
Me!tbNameLine.Height = 555
Else
End If
End If
End Sub
****************************************************
Thanks in advance!
Dwight