
Write non-ASCII chars into binary file
Quote:
> Anyone can tell me how to write non-ASCII chars into a binary file?
> Thanks.
I'm not sure what you mean by non-ASCII character, but you can write any
combination of bytes to a file in a number of different ways. Possibly
the easiest way is to use the CHR$() function to generate the desired
byte values. If your data is of a different width, use the variable
type that matches your data width - i.e. if your data consists of
double-words, use a long, etc.
-chris