How would you do to read some bytes at a offset then converting the information into Ascii.
I tried with this:
but this doesn't work.
Any ideas?
I just need to get some ascii from inside a program, but the ascii only appears after you open the program.
I tried with this:
Code:
var
fb: file of byte;
b: byte;
offset: string;
begin
fb := Edit1.text; //Path to exe.
offset := '$'+Edit2.text; //Offset
b:= $90;
Seek(fb,Offset);
Read(b);
Edit3.text := b;
end;
but this doesn't work.
Any ideas?
I just need to get some ascii from inside a program, but the ascii only appears after you open the program.