I want to store numbers between 0 and 255 in a file such that each number is 1 byte but don't know how to do this.
Thanks
dim as integer i
open "test.txt" for output as #1
for i=1 to 100
print #1,str(rnd*256)) 'this will output a number in text rather than it being 1 byte...
next i
close #1