473,473 Members | 2,153 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

What chr() is the password making dot?

Just wondering if someone knows offhand, what ASCII code that is to make
that dot that is used to mask passwords in password fields. Seems like
someone here would know off the top of their head.
TIA!

Matt
Nov 18 '05 #1
3 2576
We don't need to know off the top of our heads because a textbox can be made
into a password box by simply changing its TextMode.

To find out what char the asterisk * is, why not just use the Ask("*")
function and see what comes back?
"MattB" <so********@yahoo.com> wrote in message
news:30*************@uni-berlin.de...
Just wondering if someone knows offhand, what ASCII code that is to make
that dot that is used to mask passwords in password fields. Seems like
someone here would know off the top of their head.
TIA!

Matt

Nov 18 '05 #2
Well, I need to know how to make one in a regular text box. It's a credit
card entry box, and the user can choose to use a card on file if they have
one. So I'm not just displaying credit card numbers, I want to mask all but
the last few digits with those characters in the box. I'm using asterisks
for now, but I think it would look better to use the password masking
character. I've tried to copy them from a password box but that doesn't seem
to work.

Matt

Scott M. wrote:
We don't need to know off the top of our heads because a textbox can
be made into a password box by simply changing its TextMode.

To find out what char the asterisk * is, why not just use the Ask("*")
function and see what comes back?
"MattB" <so********@yahoo.com> wrote in message
news:30*************@uni-berlin.de...
Just wondering if someone knows offhand, what ASCII code that is to
make that dot that is used to mask passwords in password fields.
Seems like someone here would know off the top of their head.
TIA!

Matt

Nov 18 '05 #3
The dot in IE is not ASCII, but Unicode. Normal mask for ASCII is 42, which
is an asterisk.

Here is the ASCII chart, using
for(int i=1;i<256;i++)
{
char current = (char) i;
}

1:☺
2:☻
3:♥
4:♦
5:♣
6:*
7:
8:
9:
10:

11:♂
12:♀
13:
14:♫
15:☼
16:►
17:◄
18:↕
19:‼
20:¶
21:§
22:▬
23:↨
24:↑
25:↓
26:→
27:←
28:∟
29:↔
30:▲
31:▼
32:
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:⌂
128:?
129:?
130:?
131:?
132:?
133:?
134:?
135:?
136:?
137:?
138:?
139:?
140:?
141:?
142:?
143:?
144:?
145:?
146:?
147:?
148:?
149:?
150:?
151:?
152:?
153:?
154:?
155:?
156:?
157:?
158:?
159:?
160:
161:¡
162:¢
163:£
164:☼
165:¥
166:▌
167:§
168:"
169:c
170:ª
171:«
172:¬
173:-
174:r
175:_
176:°
177:±
178:²
179:3
180:'
181:µ
182:¶
183:·
184:,
185:1
186:º
187:»
188:¼
189:½
190:_
191:¿
192:A
193:A
194:A
195:A
196:Ä
197:Å
198:Æ
199:Ç
200:E
201:É
202:E
203:E
204:I
205:I
206:I
207:I
208:D
209:Ñ
210:O
211:O
212:O
213:O
214:Ö
215:x
216:O
217:U
218:U
219:U
220:Ü
221:Y
222:_
223:ß
224:*
225:á
226:â
227:a
228:ä
229:å
230:æ
231:ç
232:è
233:é
234:ê
235:ë
236:ì
237:*
238:î
239:ï
240:d
241:ñ
242:ò
243:ó
244:ô
245:o
246:ö
247:÷
248:o
249:ù
250:ú
251:û
252:ü
253:y
254:_
255:ÿ
---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
"MattB" wrote:
Just wondering if someone knows offhand, what ASCII code that is to make
that dot that is used to mask passwords in password fields. Seems like
someone here would know off the top of their head.
TIA!

Matt

Nov 18 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Joseph Braganza | last post by:
I have forgotten my administration password on XP. Is there any solution?
0
by: Richard Sherratt | last post by:
I'm printing address labels in a membership database. The rules are that if both MailingAddress1 and MailingAddress2 are Null, then use home address, otherwise use mailing address. If address line...
1
by: jdph40 | last post by:
I am trying to enter text to look like paragraphs in a text box on a report, making it look like a memo. I enter (Chr$(13) & Chr$(10) & Chr$(10)) to insert a carriage return and 2 line breaks, but...
1
by: marlene | last post by:
Dear Tom With this code: Public Function FTP(ascii As Boolean, send As Boolean, pathname As String, FileName As String, server As String, serverpathname As String, serverfilename As String,...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.