Quote:
Originally Posted by Cesar82
Code:
S1 := '<0420><0443><0441><0441><043A><0438><0439>';
From this string above I need to return: " Русский"
|
I hope you want this...
BTW if you are on discord pl add me (discord id: buntionly4u#4466)
Code:
function InitializeSetup(): Boolean;
var
S1, S2: String;
begin
S1 := #$0420+#$0443+#$0441+#$0441+#$043A+#$0438+#$0439;
MsgBox(S1, mbInformation, MB_OK);
end;