Thread
:
anyone know how to append in integer
View Single Post
•
•
Join Date: Dec 2002
Posts: 461
Reputation:
Solved Threads: 56
waynespangler
Offline
Posting Pro in Training
Re: anyone know how to append in integer
0
#
2
Nov 30th, 2008
try this
Help with Code Tags
VB.NET Syntax
(
Toggle Plain Text
)
If
e.
KeyCode
>=
48
And
e.
KeyCode
<=
57
Then
Label1.
Text
&=
Chr
(
e.
KeyValue
.
ToString
)
End
If
If e.KeyCode >= 48 And e.KeyCode <= 57 Then Label1.Text &= Chr(e.KeyValue.ToString) End If
Wayne
It is hard to understand how a cemetery can raise its burial rates and blame it on the cost of living.
waynespangler
View Public Profile
Visit waynespangler's homepage!
Find all posts by waynespangler