Hi , in visual basic i can open a binary(exe) file with below way :
Strx$ = Space(FileLen(FileName))
Open FileName For Binary As #1
Get #1, , Strx$
Close
in this way i can read all of binary file characters and read file content like this format :
and the question is how can i open a binary(exe) file in delphi with a string format(Like image) and not 0,1(binary) format ?
Thank you!