อยากให้ Textbox รับค่าเฉพาะตัวหนังสือต้องเขียน หรือ Set ค่าไงอะครับ
Tag : .NET
Date :
2011-07-27 10:18:53
By :
Akera
View :
1176
Reply :
1
No. 1
Guest
Code (VB.NET)
Private Sub txtremark_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtremark.KeyPress
Dim KeyAscii As Short = Asc(e.KeyChar)
Select Case KeyAscii
Case 48 To 57
e.Handled = True
Case Else
e.Handled = False
End Select
End Sub