Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- FORCE Data Base Compiler - ############################################################################## http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
##############################################################################
###+-------+##################################################################
#+-| CHR() |--------------------------------+#################################
#| +-------+ Converts a byte to a character |#################################
#+------------------------------------------+#################################
##############################################################################
##############################################################################
#+--| Summary |----------------+##############################################
#|     #INCLUDE string.hdr     |##############################################
#+-----------------------------+##############################################
##############################################################################
##############################################################################
#+--| Syntax |--------------------------------+###############################
#|     FUNCTION CHAR chr PROTOTYPE            |###############################
#|      PARAMETERS VALUE UINT input_value     |###############################
#+--------------------------------------------+###############################
##############################################################################
##############################################################################
####+---| Description |--------------------------------------------------+####
####| The chr() function returns a character string of length 1 with the |####
####| character derived from the ASCII value of input_value.             |####
####| ------------------------------------------------------------------ |####
####| To manipulate ASCII 0, use the fb_read() and fb_write() functions. |####
####| Through fb_write() an ASCII 0 can be sent to a printer.            |####
####+--------------------------------------------------------------------+####
##############################################################################
##############################################################################
#########+--| Example 1 |-------------------------------------------+#########
#########| *    Sound an alert if there is a printer error.         |#########
#########|                                                          |#########
#########| IF .NOT. pready()                                        |#########
#########|     ? chr(7)                   && Sound the bell         |#########
#########|     ? "printer not ready..."                             |#########
#########| ENDIF                                                    |#########
#########+----------------------------------------------------------+#########
##############################################################################
##############################################################################
#########+--| Example 2 |-------------------------------------------+#########
#########| *    Print out an ASCII table                            |#########
#########|                                                          |#########
#########| STORE 0 to r,c                                           |#########
#########| FOR i = 0 TO 255                                         |#########
#########|     @ r,c SAY chr( i )                                   |#########
#########|     c = c + 1                                            |#########
#########|     IF c >=80                                            |#########
#########|         c = 0                                            |#########
#########|         r = r + 1                                        |#########
#########|     ENDIF                                                |#########
#########| NEXT                                                     |#########
#########+----------------------------------------------------------+#########
##############################################################################

See Also: asc()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson