Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Where to find a full list of Chr() functions?

Status
Not open for further replies.

lastout

Programmer
Apr 12, 2002
84
US
Does anyone know where I can find a full list of all the Chr() functions? A website, a book, anywhere. Thanks! lastout (the game's not over till it's over)
 
I think you are talking about the 127 character set, at least I hope you are, here you go. Kinda ugly, but it will work.

1
2
3
4
5
6
7
8 Backspace
9 Tab
10 LineFeed
11
12
13 Carriage Return
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 Space
33 !
34 "
35 #
36 $
37 %
38 &
39 '
40 (
41 )
42 *
43 +
44 ,
45 -
46 .
47 /
48 0
49 1
50 2
51 3
52 4
53 5
54 6
55 7
56 8
57 9
58 :
59 ;
60 <
61 =
62 >
63 ?
64 @
65 A
66 B
67 C
68 D
69 E
70 F
71 G
72 H
73 I
74 J
75 K
76 L
77 M
78 N
79 O
80 P
81 Q
82 R
83 S
84 T
85 U
86 V
87 W
88 X
89 Y
90 Z
91 [
92 93 ]
94 ^
95 _
96 `
97 a
98 b
99 c
100 d
101 e
102 f
103 g
104 h
105 i
106 j
107 k
108 l
109 m
110 n
111 o
112 p
113 q
114 r
115 s
116 t
117 u
118 v
119 w
120 x
121 y
122 z
123 {
124 |
125 }
126 ~
127

Jim Lunde
compugeeks@hotmail.com
We all agree your theory is crazy, but is it crazy enough?
 
Yes, that's exactly what I meant. Thank you for posting the list! lastout (the game's not over till it's over)
 
You can also find them in the help file under:
Character codes
Character sets

or you can extract them yourself. Place the following
in a new module, then from the debug window
type: ? enumchar()

Code:
Function EnumChar()
Dim n As Integer
For n = 1 To 127
   Debug.Print n & &quot;: &quot; & Chr(n)
Next
End Function
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top