11-30-2024, 05:21 PM
It occurred to me, when reading it again, you say it's supposed to be stored as a two-dimensional array. So if you use the binary approach:
Code: (Select All)
Dim Arr(1 To 50, 0 To 44) As Single
ff = FreeFile
Open "DataFile" For Binary As ff
Get ff, , Arr()
Close ff
Screen 13
For x = 1 To 50
For y = 0 To 44
PSet (x, y) 'just example...
Next y, x