bonitoo
42p71 comments posted · 2 followers · following 2
14 years ago @ Source Code | Free Ind... - Download Program Penj... · 0 replies · +1 points
16 years ago @ Source Code | Free Ind... - [Tutorial-3] Membuat ... · 0 replies · +1 points
16 years ago @ Source Code | Free Ind... - Force numbers only in... · 2 replies · +1 points
Private Sub txtValue_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles txtValue.KeyPress
If Char.IsNumber(e.KeyChar) = False Then
e.Handled = True
End If
End Sub
16 years ago @ Source Code | Free Ind... - Force numbers only in... · 4 replies · +1 points
private void txtValue_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if (char.IsNumber(e.KeyChar) == false)
{
e.Handled = true;
}
}
16 years ago @ Source Code | Free Ind... - Force numbers only in... · 0 replies · +1 points
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii <> 8 Then
If InStr(Number$, Chr(KeyAscii)) = 0 Then
KeyAscii = 0
Msgbox "Only number please.."
Exit Sub
End If
End If
End Sub
16 years ago @ Indo programmer n sour... - VB.NET 2005 Source Cod... · 0 replies · +3 points
16 years ago @ Source Code | Free Ind... - Tentang Microsoft Exp... · 0 replies · +1 points
16 years ago @ Source Code | Free Ind... - [Tutorial] Membuat Ap... · 0 replies · +1 points
16 years ago @ Source Code | Free Ind... - [Tutorial-3] Membuat ... · 0 replies · +1 points
16 years ago @ Source Code | Free Ind... - Download Program Penj... · 1 reply · +1 points