Mencegah Karakter Huruf Masuk Ke Textbox
Double klik textbox , lalu ganti evant menjadi keypress.
Masukkan Koding di bawah ini :
If Not Char.IsNumber(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then
e.Handled = True
'Show messagebox indicating error
MessageBox.Show("Text ini hanya untuk nomor", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
End If
Semua Koding :
Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
If Not Char.IsNumber(e.KeyChar) And Not Char.IsControl(e.KeyChar) Then
e.Handled = True
'Show messagebox indicating error
MessageBox.Show("Text ini hanya untuk nomor", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
End If
End Sub
Semoga bermanfaat
0 comments:
Post a Comment