Re: [Gambas-user] Or inside a Case

2008-06-17 Thread Charlie Reinl
Salut, just CASE "hola", "hello", "Hallo", hALLO" Am Dienstag, den 17.06.2008, 09:29 -0700 schrieb Nx GT-R BOY: > Hi, I have a problem, I am not really sure how to get an Or working inside a > case, the compiler doesn't complain about any syntax problems, but the code > just doesn't works: >

Re: [Gambas-user] Or inside a Case

2008-06-17 Thread bruno
this work: SELECT CASE "adios" CASE "hola", "hello" TextBox1.text = "Hola Hello" CASE "adios", "bye" TextBox1.text = "Adios Bye" END SELECT Bye. Il giorno mar, 17/06/2008 alle 09.29 -0700, Nx GT-R BOY ha scritto: > Hi, I have a problem, I am not really sure how to

Re: [Gambas-user] Or inside a Case

2008-06-17 Thread Stefano Palmeri
Il martedì 17 giugno 2008 18:29:11 Nx GT-R BOY ha scritto: > Hi, I have a problem, I am not really sure how to get an Or working inside > a case, the compiler doesn't complain about any syntax problems, but the > code just doesn't works: > > > > SELECT CASE something.text > > CASE "hola" or "hello"

[Gambas-user] Or inside a Case

2008-06-17 Thread Nx GT-R BOY
Hi, I have a problem, I am not really sure how to get an Or working inside a case, the compiler doesn't complain about any syntax problems, but the code just doesn't works: SELECT CASE something.text CASE "hola" or "hello" do something1 CASE "adios" or "bye" do someth