So how well do you really know VB ?
Posted
Fri, Jun 30 2006 11:43
by
bill
okay, so I posted about the If low < x < high Then syntax. The smart people got it. But now comes the big question. Under what circumstances will this code give a different result in VB6 compared to VB.NET.
If low < x < high Then
MsgBox ("true")
Else
MsgBox("false")
End If