Re: [Gambas-user] Several lines from a string in the code

2010-05-15 Thread Benoît Minisini
> > Method 2: > > textarea1.text = ("Moon\n" > > > > "The Moon is the only natural satellite of Earth.\n" > > > > "It is the nearest body and the best known.") > > > > error: Missing ')' in line > > This method should

Re: [Gambas-user] Several lines from a string in the code

2010-05-13 Thread craf
-Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Several lines from a string in the code Fecha: Fri, 14 May 2010 01:16:08 +0200 > > Method 2: > textarea1.text =

Re: [Gambas-user] Several lines from a string in the code

2010-05-13 Thread Benoît Minisini
> > Method 2: > textarea1.text = ("Moon\n" > "The Moon is the only natural satellite of Earth.\n" >"It is the nearest body and the best known.") > > error: Missing ')' in line > This method should be possible, but because of a implement

Re: [Gambas-user] Several lines from a string in the code

2010-05-13 Thread Fabien Bodard
i > Reply-to: mailing list for gambas users > > Para: mailing list for gambas users > Asunto: Re: [Gambas-user] Several lines from a string in the code > Fecha: Wed, 12 May 2010 23:11:58 +0200 > >> Try this: >> >> textarea1.text ="bla,bla, bla, bla, bla, b

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread craf
-Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Several lines from a string in the code Fecha: Wed, 12 May 2010 23:11:58 +0200 > Try this: > > textarea1.text ="bla,bla, bla,

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread craf
-Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Several lines from a string in the code Fecha: Wed, 12 May 2010 23:11:58 +0200 > Try this: > > textarea1.text ="bla,bla, bla,

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread craf
¡Hi Jesús! What happens is that I need to ident the strings within the code so I would not write them out so long and off the screen. Regards. >Try this: >textarea1.text ="bla,bla, bla, bla, bla, bla" & "bla,bla,bla,bla,bla,bla,bla" & "blab,bla" >Regards >Jes

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread Benoît Minisini
> Try this: > > textarea1.text ="bla,bla, bla, bla, bla, bla" & > "bla,bla,bla,bla,bla,bla,bla" & > "blab,bla" > > > Regards > > Jesus > Or, better: textarea1.text ="bla,bla, bla, bla, bla, bla" "bla,bla,bla,bla,bla,bla,bla" "bl

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread EA7DFH
Try this: textarea1.text ="bla,bla, bla, bla, bla, bla" & "bla,bla,bla,bla,bla,bla,bla" & "blab,bla" Regards Jesus El 12/05/10 22:13, craf escribió: > Hi. > > There is a way to display a string in the code by several lines?, ex > > textarea1.text ="bla,bla, bl

[Gambas-user] Several lines from a string in the code

2010-05-12 Thread craf
Hi. There is a way to display a string in the code by several lines?, ex textarea1.text ="bla,bla, bla, bla, bla, bla bla,bla,bla,bla,bla,bla,bla, blab,bla" Regards -