berikut:
>Message 3
> From: "Frangky" [EMAIL PROTECTED]
> Date: Mon May 22, 2006 6:19pm(PDT)
>Subject: Kenapa tombol BackSpace tidak berfungsi di text box
>
>Friends,
>
>Saya pakai kode dibawah ini, tapi kenapa tombol BackSpace tidak berfungsi!
>Mohon bantuannya.
>
>Private Sub Text1_KeyPress(KeyAscii As Integer)
> If Not KeyAscii >= 65 And KeyAscii <= 90 Or KeyAscii = 8 Then
> KeyAscii = 0
> End If
>End Sub
>
>
>Terima kasih.
Coba ganti jadi begini:
Private Sub Text1_KeyPress(KeyAscii As Integer)
If (Not KeyAscii >= 65 And KeyAscii <= 90) And (Not KeyAscii = 8) Then
KeyAscii = 0
End If
End Sub
Regards,
bulsara
http://bulsara.host.sk
Wahana Programmer Groups Links
<*> Untuk mengunjungi sponsor milis ini, klik link berikut:
http://wahanaprogrammer.net
<*> Untuk menghubungi owner milis ini, kirim email ke:
[EMAIL PROTECTED]
<*> Konsultasi pemrogramman bisa chat disini:
Yahoo! Messenger: wahanaprogrammer
SPONSORED LINKS
| Programmer | Indonesia | Basic programming language |
| Computer programming languages | Programming languages | Java programming language |
YAHOO! GROUPS LINKS
- Visit your group "Programmer-VB" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
