If STATUS is a string and I have this code:


VB Code:
  1. Dim status as string = 5
  2. If status <= 7 Then
  3.    go here
  4. end if


why does this code see the IF statement as true, since STATUS is not an integer?

just wondering...