How to write binary data to a file (solved)
Lars Uffmann wrote:
Open "myfile.txt" For Binary Access Write As #1
buffer = "something"
Put #1, , buffer
and it doesn't seem to be what I want anyways. I could swear I've done
this before - successfully - but right now I don't know how.
Solved my problem: actually I didn't do what I wrote above, but rather I
tried directly outputting a string constant - and Put needs a byref
variable.
The above code works just fine.
Best Regards,
Lars
|