Is there a way to identify the offset (Byte in the Go To dialog) of the current cursor position?
TIA,
Terry.
Cursor offset
Moderators: AmigoJack, bbadmin, helios, Bob Hansen, MudGuard
-
- Posts: 2461
- Joined: Sun Mar 02, 2003 9:22 pm
-
- Posts: 25
- Joined: Mon Feb 14, 2005 10:51 am
Tedious workround:
Select string starting at byte of interest, make string big enough to avoid likely dupes in file. Copy to clipboard. Avoid newlines if possible.
Close app, rename file with binary filetype extension, rightclick to open in TextPad, then use Find on clipboard contents. The first byte highlighted will be the one you need, and the offset can be read from the table. If you had to copy a newline to get enough string, it won't find it unless you click the hex display mode in the find dialog, and change the \n (5C6E) to 0D0A or whatever is in your file as standard.
Not fun, but at least it means you don't need another app to do it.
Select string starting at byte of interest, make string big enough to avoid likely dupes in file. Copy to clipboard. Avoid newlines if possible.
Close app, rename file with binary filetype extension, rightclick to open in TextPad, then use Find on clipboard contents. The first byte highlighted will be the one you need, and the offset can be read from the table. If you had to copy a newline to get enough string, it won't find it unless you click the hex display mode in the find dialog, and change the \n (5C6E) to 0D0A or whatever is in your file as standard.
Not fun, but at least it means you don't need another app to do it.