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
- 15 years agoHi Dominik,Try using the Ord function:[DelphiScript]...Log.Message(Ord('A'));Log.Message(Ord('&'));...