On 22/08/06, Emile Schwarz <[EMAIL PROTECTED]> wrote:
Select Case Y Case Is < 100 // Was: Y < 100 // Row #1 startY = 0 endY = 100 Case Between(Y,100,200) // Was: Is > 100 And Is < 200 // Row #2 startY = 100 endY = 200 Case Between(Y,200,300) // Was: Is > 100 And Is < 200 // Row #3 startY = 200 endY = 300 Case Between(Y,300,400) // Was: Is > 100 And Is < 200 // Row #4 startY = 300 endY = 400 Case Between(Y,400,500) // Was: Is > 100 And Is < 200 // Row #5 startY = 400 endY = 500 End Select
You cant do that with Select Case. You'll have to use elseif's. Maarten _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives of this list here: <http://support.realsoftware.com/listarchives/lists.html>
