Not really an answer, but just poking about, I typed this into the immediate window, with these results:
For x = -5 To 5 : ? x, CBool(x), ( x = True ), ( x = False ) : Next x
-5 True False False
-4 True False False
-3 True False False
-2 True False False
-1 True True False
0 False False True
1 True False False
2 True False False
3 True False False
4 True False False
5 True False False
(I tested more values, but only -1 and 0 had anything "interesting" going on. The rest were all True/False/False.) So, empirically, I'd say that the comparison is being done arithmetically unless you cast with CBool. Why? I can't really say...
Booleanin the first place? – Cody Gray Nov 25 '10 at 10:09Booleaninto the language. AFAICRBooleanwas introduced in VB4. – MarkJ Nov 25 '10 at 11:58? (55 = True)returnsFalse, whereas? CBool(55)returnsTrue– onedaywhen Nov 25 '10 at 16:02