Typically, you set the report’s EventMode property using the Visual Basic Properties window. You can also set it through an event procedure, as shown in the following example:
Private Sub Report_Start() If UserInfoGet.UserID = "LESSONUSER1" Then RMCustomerReport.EventMode = emOriginalOnly End If End Sub