Hi I am new at this and I have designed and written a programme for a Flash Card Addition Problem.
Everything seems to work except for one thing , please if there is anyone out there who can help I would be very very grateful.

This is where I am having a problem, when I type in the answer and press the answer button, if it is right it is supposed to give you the right answer and turn green and say well done, but if it is the wrong answer it is supposed to turn red and say sorry try again, but only one half of this is working - please somebody point out where I have gone wrong with this.

Thanks
Vonni
xxx

Private Sub btnAnswer_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAnswer.Click
txtAnswer.Text = "" & Val(Val(lblView1.Text) + Val(lblView3.Text))
If txtTypeAnswer Is Label1 = False Then
lblCorrectWrong.BackColor = Color.Green
lblCorrectWrong.Text = "Well Done!"
ElseIf Label1 Is txtTypeAnswer = True Then
lblCorrectWrong.BackColor = Color.IndianRed
lblCorrectWrong.Text = "SorryTry Again"
End If