Newbie here. Just got three questions.
1. Im working on a program where every byte counts. But a hex editor says
the EXE files strings are in what looks like unicode. How do I fix this?
2. Anyone tried messing with a VB output executable with a hex editor after
compilation to reduce space a bit? I was thinking my print lines have a lot
of CHR$(13) in them, if I were to replace that in the code with an easily
recognised character (éé) and then go through the file in hex replacing that
character in strings with the hex 0d0a, or whatever works, I can get a few
fewer bytes. Ive got to work on it with the editor anyway, its got a
self-check function which requires setting a few bytes in the file to its
compiled checksum.
1. Im working on a program where every byte counts. But a hex editor says
the EXE files strings are in what looks like unicode. How do I fix this?
2. Anyone tried messing with a VB output executable with a hex editor after
compilation to reduce space a bit? I was thinking my print lines have a lot
of CHR$(13) in them, if I were to replace that in the code with an easily
recognised character (éé) and then go through the file in hex replacing that
character in strings with the hex 0d0a, or whatever works, I can get a few
fewer bytes. Ive got to work on it with the editor anyway, its got a
self-check function which requires setting a few bytes in the file to its
compiled checksum.
Comment