If i make a dim in my program of more then one array. Like
Dim CheckList$(25,3)
And i call a Function where this array is used the array is Local again for that function.
E.g
Dim CheckList$(15,3)
CheckList$(10,1) = "Player move"
CheckList$(10,2) = "Player Won"
DisplayWhat(2)
Function DisplayWhat(Pointing as integer)
Text 100,100,CheckList$(10,Pointing)
Text 100,120,"Is the status of the game"
EndFunction
The outcome is nothing. In the function DisplayWhat the array is somhow turning back to Local. The second line is printed.
Or did i do something wrong here.
Because in my program i have the array completly filled out but nothing is printing out to the screen.
Never say a question is stupid. Questions not ask are stupid.