bonitoo

bonitoo

42p

71 comments posted · 2 followers · following 2

14 years ago @ Source Code | Free Ind... - Download Program Penj... · 0 replies · +1 points

Gak ada? Kosong isinya?

16 years ago @ Source Code | Free Ind... - [Tutorial-3] Membuat ... · 0 replies · +1 points

Suatu sistem yang memiliki lebih dari 3 form? Bisa dijelaskan?

16 years ago @ Source Code | Free Ind... - Force numbers only in... · 2 replies · +1 points

sorry:
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

One for you:

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

Complete list and also a message box:

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

Lam kenal juga... blend juga bisa menggunakan code behind, tergantung keperluan.. ;)

16 years ago @ Source Code | Free Ind... - [Tutorial] Membuat Ap... · 0 replies · +1 points

Untuk VB 2005, lom ada LINQ di dalamnya... Thanks.. ;)

16 years ago @ Source Code | Free Ind... - [Tutorial-3] Membuat ... · 0 replies · +1 points

Coba tambahkan field hits di bagian akhir tabel, hits ini akan bertambah 1 bila suatu musik dimainkan berdasarkan kode/nama musik tersebut...

16 years ago @ Source Code | Free Ind... - Download Program Penj... · 1 reply · +1 points

Ada yang VB 6 cuman g di publish...