Rabu, 21 Juli 2010

TextBox Hanya Menerima Input Angka

Source code berikut untuk memfungsikan agar textbox hanya menerima input angka. Cocok digunakan untuk input kode pos atau no telepon.

Yang diperlukan :
1 Form
1 TextBox

Source code :

1Public Sub HanyaAngka(ByRef KeyAscii As Integer)
2 If ((KeyAscii <>And KeyAscii <> 8 ) Or KeyAscii > 57) Then
3 KeyAscii = 0
4 End If
5End Sub
6
7Private Sub Text1_KeyPress(KeyAscii As Integer)
8 HanyaAngka KeyAscii
9End Sub

Download Source Code

0 komentar:

Posting Komentar