Reis daha detaylı anlatırmısın yeniyimde fazla birşey bilmiyorm sadece tuşsuz hile yapabiliyorumtimer ekle if checkbox->checked
vb.nete pek hakim değilim ama hepsinde aynı mantık click ya da timerden kontrol ediliyorReis daha detaylı anlatırmısın yeniyimde fazla birşey bilmiyorm sadece tuşsuz hile yapabiliyorum
Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
If GetAsyncKeyState(Keys.Delete) Then
//keys.delete yerine istediğin tuşu yaz ve bu kısma da tuşa basılınca ne olacağını yaz.
End If
Public Class Form1
Dim degis As Integer
Dim input As String
Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If GetAsyncKeyState(Keys.Delete) Then
CheckBox1.Checked = True
End If
End Sub