Examples: BeforePH event


The following BeforePH event procedure suppresses the page header based on the current user ID:

Private Sub Report_BeforePH(SuppressBand As Boolean)
	If UserInfoGet.UserID = "LESSONUSER1" Then
		SuppressBand = True
	End If
End Sub


Documentation Feedback