The first IF statement is really working good and the other IF statements that follow do not work. When I click the button nothing happens.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If TextBox1.Text.Trim = "What is your name?" Then
Label1.Text = "Hi there kid! I will tell you later!"
Return
If TextBox1.Text.Trim = "What is your age?" Then
Label1.Text = "I was made in January 31,2014 well that is my birth date!"
Return
If TextBox1.Text = "Hi" Then
Label1.Text = "Hi there also!"
Else
Label1.Text = "Do you have anything you want to say other than that?"
End If
End If
End If
End Sub