Just started with VB6 (I've done some programming in java etc)
I can't seem to figure out my problem!

Private Sub cmdtest_Click()
If ((txtuser.Text >= 0) And (txtuser.Text < 8)) Then
MsgBox "You are " & txtuser.Text & " so you are a baby!"
ElseIf ((txtuser.Text >= 8) And (txtuser.Text < 18)) Then
MsgBox "You are " & txtuser.Text & " so you are a teen!"
ElseIf ((txtuser.Text >= 18) And (textuser.Text < 40)) Then
MsgBox "You are " & txtuser.Text & " so you are an adult!"
ElseIf ((txtuser.Text >= 40) And (textuser.Text < 110)) Then
MsgBox "You are " & txtuser.Text & " so you are really old!"
ElseIf ((txtuser.Text >= 110) And (textuser.Text < 200)) Then
MsgBox "You are " & txtuser.Text & " so you are dead!"
End If
End Sub