Hi,
Been playing around when some custom lists and ran into something I dont understand. This code below Im using for an example:
Now, all i want to do is retrieve the values in a given dimmed slot.
In the example I want to retrieve the values of x posted to the grid(1)\x array but the list shows me the entire gridstore list [ grid(1) - grid(50) ].
Is what im doing impossible in blitz3d or am I doing something wrong here? thanks.
Been playing around when some custom lists and ran into something I dont understand. This code below Im using for an example:
Type gridstore Field x End Type Dim grid.gridstore(50) For n=1 To 50 grid(n) = New gridstore grid(n)\x=Rand(1,100) grid(n) = New gridstore grid(n)\x=Rand(1,100) Next For grid(1)=Each gridstore Print grid(1) \x Next
Now, all i want to do is retrieve the values in a given dimmed slot.
In the example I want to retrieve the values of x posted to the grid(1)\x array but the list shows me the entire gridstore list [ grid(1) - grid(50) ].
Is what im doing impossible in blitz3d or am I doing something wrong here? thanks.