Answer 3
Try this, might be some syntax errors: ( i dont work in vb)
Protected Function FormatInput(progress As Object) As String
Dim retValue As String = ""
Dim input As String = progress.ToString()
If input = "1" Then
retValue = "Good"
ElseIf input = "2" Then
retValue = "Review"
Else
retValue = "Redo"
End If
Return retValue
End Function
I used:
http://www.developerfusion.com/tools/convert/csharp-to-vb/
to convert