Re: Using a field list to act as variables?

2004-04-08 Thread Glen Bojsza
An explanation always helps...thanks On Thursday, April 8, 2004, at 05:59 PM, [EMAIL PROTECTED] wrote: sez [EMAIL PROTECTED]: I am experimenting with the following and was hoping someone can tell me why it doesn't work... I have a field nOribit with 3 lines yt1 yt2 yt3 on mouseUp put empty into

Re: Using a field list to act as variables?

2004-04-08 Thread Cubist
sez [EMAIL PROTECTED]: >I am experimenting with the following and was hoping someone can tell >me why it doesn't work... > >I have a field nOribit with 3 lines > >yt1 >yt2 >yt3 > >on mouseUp >put empty into tSolar >repeat for each line L in field "nOrbit" >put L & cr after tSolar >end repeat >dele

Re: Using a field list to act as variables?

2004-04-08 Thread Glen Bojsza
Martin, This works and it helps more than you can imagine! thanks, Glen On Thursday, April 8, 2004, at 04:27 PM, Martin Baxter wrote: Hello Glen, try: put "1,2,3" into yt1 put "4,5,6,7" into yt2 put "9,8,7" into yt3 put empty into tSolar repeat for each line L in field "nOrbit" put va

Re: Using a field list to act as variables?

2004-04-08 Thread Martin Baxter
Hello Glen, try: put "1,2,3" into yt1 put "4,5,6,7" into yt2 put "9,8,7" into yt3 put empty into tSolar repeat for each line L in field "nOrbit" put value(L) & cr after tSolar --## end repeat delete last char of tSolar put tSolar HTH martin >Hi, > >I am experimenting with the follow

Using a field list to act as variables?

2004-04-08 Thread Glen Bojsza
Hi, I am experimenting with the following and was hoping someone can tell me why it doesn't work... I have a field nOribit with 3 lines yt1 yt2 yt3 on mouseUp put empty into tSolar repeat for each line L in field "nOrbit" put L & cr after tSolar end repeat delete last char of tSolar put "1,2,3"