How can I insert some bytes into a binary file?
The string I want to insert has a constant lenght.
thx
Printable View
How can I insert some bytes into a binary file?
The string I want to insert has a constant lenght.
thx
try:
Code:
Open "the.rob" For Binary As #1
Put #1, , "hello"
Close #1