Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Traversing an array differently than from top down
Message
From
25/07/2007 04:47:28
 
 
To
24/07/2007 16:52:06
Jay Johengen
Altamahaw-Ossipee, North Carolina, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01243286
Message ID:
01243395
Views:
26
GIVE that man some gold stars!

>Got it:
>
>
>FOR yy = 1 TO max_room
>	FOR xx = 1 TO n_lines
>		WAIT WINDOW "Next slot: " + 'Line ' + ALLTRIM(STR(xx)) + ' - ' + 'Room ' + ALLTRIM(STR(yy)) + ' : ' + ALLTRIM(STR(x_room( xx, yy )))
>	ENDFOR
>ENDFOR
>
>
>
>>The x_room array displays like the following with each line grouped together by the four columns:
>>
>>
>>(Line,Room)
>>
>>(1,1)
>>(1,2)
>>(1,3)
>>(1,4)
>>(2,1)
>>.
>>.
>>.
>>(25,4)
>>
>>
>>I want to move through it like this so all the rooms are in order of groups of 25:
>>
>>
>>(Line,Room)
>>
>>(1,1)
>>(2,1)
>>(3,1)
>>(4,1)
>>(5,1)
>>.
>>.
>>.
>>(25,1)
>>(1,2)
>>(2,2)
>>(3,2)
>>(4,2)
>>(5,2)
>>.
>>.
>>.
>>(25,2)
>>.
>>.
>>.
>>
>>
>>This is the basic code that goes through it currently:
>>
>>
>>FOR yy = 1 TO max_room
>>	FOR xx = 1 TO n_lines
>>		WAIT WINDOW "Next slot: " + ALLTRIM(STR(x_room( xx, yy )))
>>	ENDFOR
>>ENDFOR
>>
- Whoever said that women are the weaker sex never tried to wrest the bedclothes off one in the middle of the night
- Worry is the interest you pay, in advance, for a loan that you may never need to take out.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform