|
| KiXtart Command Reference |
CHRactionAllows you to insert special characters in a string, such as carriage returns. syntaxCHR (character code) parameterCharacter code A numeric expression representing the character code to insert. returnsThe string representation of the character code. example$Message = "Hello " + @USERID + chr(13) + chr(10) + "Welcome to our network." |