Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. The required CharCode argument should be a integer that identifies a character.
  2. Numbers from 0 – 31 are the same as standard, nonprintable ASCII codes.

Examples

Chr$(10)

returns a linefeed character.

Chr$(13) + Chr$(10)

returns a carriage return linefeed character (a "hard" enter in MSWord, see Wikipedia: [CRLF])

...