G Guest May 26, 2004 #1 does anyone know where is there a list of all characters available to Chr() function and their corresponding numbers: ',",(space),(return), etc.. thank you.
does anyone know where is there a list of all characters available to Chr() function and their corresponding numbers: ',",(space),(return), etc.. thank you.
L Lynn Trapp May 26, 2004 #2 This function will return the information for you. Function GetAscii() Dim MyAscii As String For x = 0 To 255 MyAscii = Chr(x) Debug.Print MyAscii Next x End Function -- Lynn Trapp MS Access MVP www.ltcomputerdesigns.com Access Security: www.ltcomputerdesigns.com/Security.htm tam said: does anyone know where is there a list of all characters available to Click to expand... Chr() function and their corresponding numbers: ',",(space),(return), etc...
This function will return the information for you. Function GetAscii() Dim MyAscii As String For x = 0 To 255 MyAscii = Chr(x) Debug.Print MyAscii Next x End Function -- Lynn Trapp MS Access MVP www.ltcomputerdesigns.com Access Security: www.ltcomputerdesigns.com/Security.htm tam said: does anyone know where is there a list of all characters available to Click to expand... Chr() function and their corresponding numbers: ',",(space),(return), etc...
B Brian Kastel May 26, 2004 #3 The codes are ASCII. See them all at http://www.asciitable.com/ -- Brian Kastel --Original Message---------------- does anyone know where is there a list of all characters available to Chr() function and their corresponding numbers: ',",(space),(return), etc... thank you.
The codes are ASCII. See them all at http://www.asciitable.com/ -- Brian Kastel --Original Message---------------- does anyone know where is there a list of all characters available to Chr() function and their corresponding numbers: ',",(space),(return), etc... thank you.