04-21-2009, 06:19 PM
Using string concatenation operator you can pass the values to Report
Vijay
Code:
If val1=val2 Then
reporter.ReportEvent micPass,"Amount" ,"Calculation ok and the Values are-> " &val1 & " and " &val2
else
reporter.ReportEvent micFail,"Amount", "Calculation wrong and the Values are-> " &val1 & " and " &val2
End if
Vijay