Bytemove question
Don M
Posts: 1,652
Lets say I have a byte buffer named Work_Buffer that has 80 bytes in it.
If I want to move just a portion (9 bytes) of the buffer starting at byte 64 into another buffer named Buffer2 is this a valid command?
If I want to move just a portion (9 bytes) of the buffer starting at byte 64 into another buffer named Buffer2 is this a valid command?
bytemove(@Buffer2, @Work_Buffer[64], 9)
Comments
I'm not sure why, but I tend to use "@Work_Buffer + 64" rather than "@Work_Buffer[64]" but I'm almost positive your way will also work (and might even be more correct).
electrodude