Forum
Bildirimler
Hepsini Temizle
Yazılım Genel
4
Yazılar
2
Üyeler
0
Reactions
539
Görüntüleme
Konu başlatıcı
Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
Dim tuş As String = TextBox1.Text
If GetAsyncKeyState(Keys.tuş) Then
MsgBox("ok")
End If
End Sub
Forum da ki textbox1.text e yazdığım harfin tuşlanıp tuşlanmadığını kontrol ettirmek istiyorum...
Gönderildi : 27/08/2015 08:05
Konu başlatıcı
şöyle bir şey yaptım şimdilik...
Dim tuş As Integer = TextBox1.Text
If GetAsyncKeyState(vKey:=tuş) Then
MsgBox("ok")
End If
Gönderildi : 27/08/2015 08:19
Merhaba,
msdn de bulunan Control.KeyPress eventini incelerseniz örnekleri de faydalı olacaktır.
https://msdn.microsoft.com/en-us/library/system.windows.forms.control.keypress(v=vs.110).aspx
ProfectSoft Yazılım ve Danışmanlık Hizmetleri
LogPusher & Bifyou E-Commerce System
www.profectsoft.com
Gönderildi : 27/08/2015 20:54
Konu başlatıcı
Teşekkürler !
Gönderildi : 28/08/2015 18:40