Using this method, you can control what all you want to display in the test run results.
**'Reporter.Filter = rfDisableAll'**
For example, you may want to display only the failed steps & not the passed ones.
To do so, you would need to use the Filter Property of the Reporter Object.
![alt text][1]
You can use any of the below mentioned values in the Reporter.Filter property
Reporter.ReportEvent micPass, ''Step 1'', ''Passed''
Reporter.ReportEvent micFail, ''Step 2'', ''Failed''
'Disable all the Results
Reporter.Filter = rfDisableAll
Reporter.ReportEvent micPass, ''Step 3'', ''Passed''
Reporter.ReportEvent micFail, ''Step 4'', ''Failed''
'Enable Result Display
Reporter.Filter = rfEnableAll
Reporter.ReportEvent micWarning, ''Step 5'', ''Warning''
[1]: /storage/temp/834-report-mode.jpg