d_jeziorski
15 years agoNew Contributor
Ord function in delphi script (TC 6.52)
Hello,
I have a question. Does any one have script that would convert ascii code into a character. It's the function which is opposite to the chr() function
--
Dominik
I have a question. Does any one have script that would convert ascii code into a character. It's the function which is opposite to the chr() function
--
Dominik
- Hi Dominik,Try using the Ord function:[DelphiScript]...Log.Message(Ord('A'));Log.Message(Ord('&'));...