Group: Forum Members
Posts: 78,
Visits: 159
|
So I have function and it seems to work sporadically. It essentially cannot process the following line. Any ideas on the issue? Is it just to much for it to process?
/ ontrialbegin = [values.g1 = list.pickerhl.nextvalue; values.oh1 = list.ohl1.item(list.pickerhl.currentvalue); values.ol1 = list.ohl2.item(list.pickerhl.currentvalue); values.p1 = list.phl.item(list.pickerhl.currentvalue); values.g2 = list.pickerhl.nextvalue; values.oh2 = list.ohl1.item(list.pickerhl.currentvalue); values.ol2 = list.ohl2.item(list.pickerhl.currentvalue); values.p2 = list.phl.item(list.pickerhl.currentvalue); values.g3 = list.pickerhl.nextvalue; values.oh3 = list.ohl1.item(list.pickerhl.currentvalue); values.ol3 = list.ohl2.item(list.pickerhl.currentvalue); values.p3 = list.phl.item(list.pickerhl.currentvalue); values.g4 = list.pickerhl.nextvalue; values.oh4 = list.ohl1.item(list.pickerhl.currentvalue); values.ol4 = list.ohl2.item(list.pickerhl.currentvalue); values.p4 = list.phl.item(list.pickerhl.currentvalue); values.g5 = list.pickerhl.nextvalue; values.oh5 = list.ohl1.item(list.pickerhl.currentvalue); values.ol5 = list.ohl2.item(list.pickerhl.currentvalue); values.p5 = list.phl.item(list.pickerhl.currentvalue); values.g6 = list.pickerhl.nextvalue; values.oh6 = list.ohl1.item(list.pickerhl.currentvalue); values.ol6 = list.ohl2.item(list.pickerhl.currentvalue); values.p6 = list.phl.item(list.pickerhl.currentvalue); values.g7 = list.pickerhl.nextvalue; values.oh7 = list.ohl1.item(list.pickerhl.currentvalue); values.ol7 = list.ohl2.item(list.pickerhl.currentvalue); values.p7 = list.phl.item(list.pickerhl.currentvalue); values.g8 = list.pickerhl.nextvalue; values.oh8 = list.ohl1.item(list.pickerhl.currentvalue); values.ol8 = list.ohl2.item(list.pickerhl.currentvalue); values.p8 = list.phl.item(list.pickerhl.currentvalue); values.g9 = list.pickerhl.nextvalue; values.oh9 = list.ohl1.item(list.pickerhl.currentvalue); values.ol9 = list.ohl2.item(list.pickerhl.currentvalue); values.p9 = list.phl.item(list.pickerhl.currentvalue); values.g10 = list.pickerhl.nextvalue; values.oh10 = list.ohl1.item(list.pickerhl.currentvalue); values.ol10 = list.ohl2.item(list.pickerhl.currentvalue); values.p10 = list.phl.item(list.pickerhl.currentvalue); values.g11 = list.pickerhl.nextvalue; values.oh11 = list.ohl1.item(list.pickerhl.currentvalue); values.ol11 = list.ohl2.item(list.pickerhl.currentvalue); values.p11 = list.phl.item(list.pickerhl.currentvalue); values.g12 = list.pickerhl.nextvalue; values.oh12 = list.ohl1.item(list.pickerhl.currentvalue); values.ol12 = list.ohl2.item(list.pickerhl.currentvalue); values.p12 = list.phl.item(list.pickerhl.currentvalue); values.g13 = list.pickerhl.nextvalue; values.oh13 = list.ohl1.item(list.pickerhl.currentvalue); values.ol13 = list.ohl2.item(list.pickerhl.currentvalue); values.p13 = list.phl.item(list.pickerhl.currentvalue); values.g14 = list.pickerhl.nextvalue; values.oh14 = list.ohl1.item(list.pickerhl.currentvalue); values.ol14 = list.ohl2.item(list.pickerhl.currentvalue); values.p14 = list.phl.item(list.pickerhl.currentvalue); values.g15 = list.pickerhl.nextvalue; values.oh15 = list.ohl1.item(list.pickerhl.currentvalue); values.ol15 = list.ohl2.item(list.pickerhl.currentvalue); values.p15 = list.phl.item(list.pickerhl.currentvalue); values.g16 = list.pickerhl.nextvalue; values.oh16 = list.ohl1.item(list.pickerhl.currentvalue); values.ol16 = list.ohl2.item(list.pickerhl.currentvalue); values.p16 = list.phl.item(list.pickerhl.currentvalue); values.g17 = list.pickerhl.nextvalue; values.oh17 = list.ohl1.item(list.pickerhl.currentvalue); values.ol17 = list.ohl2.item(list.pickerhl.currentvalue); values.p17 = list.phl.item(list.pickerhl.currentvalue); values.g18 = list.pickerhl.nextvalue; values.oh18 = list.ohl1.item(list.pickerhl.currentvalue); values.ol18 = list.ohl2.item(list.pickerhl.currentvalue); values.p18 = list.phl.item(list.pickerhl.currentvalue); values.g19 = list.pickerhl.nextvalue; values.oh19 = list.ohl1.item(list.pickerhl.currentvalue); values.ol19 = list.ohl2.item(list.pickerhl.currentvalue); values.p19 = list.phl.item(list.pickerhl.currentvalue); values.g20 = list.pickerhl.nextvalue; values.oh20 = list.ohl1.item(list.pickerhl.currentvalue); values.ol20 = list.ohl2.item(list.pickerhl.currentvalue); values.p20 = list.phl.item(list.pickerhl.currentvalue);]
Here is the lists its drawn from: <list ohl1> / items = (3.85,3.85,3.85,3.85,3.85,2,2,2,2,2) </list>
<list ohl2> / items = (.10,.10,.10,.10,.10,1.60,1.60,1.60,1.60,1.60) </list>
<list phl> / items = (.1,.2,.3,.4,.5,.6,.7,.8,.9,1,.1,.2,.3,.4,.5,.6,.7,.8,.9,1) </list>
<list pickerhl> / selectionmode = random / items = (1-20) / selectionrate = always </list>
|