Ok, heres my problem -:
Its for a code based program, rather than a standalone.
I have an Array "COORD(X,Y,1)", (this is set incode by 2 variables "height" + "width"), and i want to save all the info in the array to a file.. say "test.txt"
as its a variable i cant really write out each line seperatly cos there would be hundreds. From my Experiance in Visual Studio, i know you can use For/Next statements to do this, but it doesn't seem to work on DBC.
I use the code:
open file to write 1,"test.txt"
For I = 1 to X
For A = 1 to Y
Write Word 1, COORD(I,A,1)
Next A
Next I
close file 1
in VB, that would work, any help would b mucho appreciated