Hello to all! There is a file: editME.exe This file has a label, with text 54321. Code in Pascal Source
data: array [0..5] of byte = ($ 8B, $ 44, $ 24, $ 30, $ C7, $ 40);
It is necessary to place this text to write the text from edit1. Delphi 7.
Hello to all! There is a file: editME.exe This file has a label, with text 54321. Code in Pascal Source
data: array [0..5] of byte = ($ 8B, $ 44, $ 24, $ 30, $ C7, $ 40);
It is necessary to place this text to write the text from edit1. Delphi 7.
Most likely, edit1.text
is of type String
. You need to change the type of the data
variable to String
in order to assign a value from edit1.text
, but this may affect other code that uses this variable.
Source: https://ru.stackoverflow.com/questions/196995/
All Articles