A
Andre
Hi,
Is there a way to make this work.
The Select case always enter in "Case Is > 0, Is < 1".
myReader.GetValue(0) return 8.4, but 8.4 is not between 0 and 1, so it
seem that the second part of the case does'nt work.
Select Case myReader.GetValue(0)
Case Is > 0, Is < 1
dr(3) = "red"
Case Is >= 1, Is < 2
dr(3) = "blue"
Case Is >= 2, Is < 3
dr(3) = "yellow"
[...]
End Select
Thank you.
Is there a way to make this work.
The Select case always enter in "Case Is > 0, Is < 1".
myReader.GetValue(0) return 8.4, but 8.4 is not between 0 and 1, so it
seem that the second part of the case does'nt work.
Select Case myReader.GetValue(0)
Case Is > 0, Is < 1
dr(3) = "red"
Case Is >= 1, Is < 2
dr(3) = "blue"
Case Is >= 2, Is < 3
dr(3) = "yellow"
[...]
End Select
Thank you.