Skip to main content

AccessTr.neT


Keypress İle Listedeki İstediğimiz Kayda Gitmek

Keypress İle Listedeki İstediğimiz Kayda Gitmek

#2
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
   
If (KeyCode = vbKeyNumpad1) And ((Shift And acAltMask) <> 0) Then
KeyCode = 0
Me!Liste0.Selected(0) = True
ElseIf (KeyCode = vbKeyNumpad2) And ((Shift And acAltMask) <> 0) Then
KeyCode = 0
Me!Liste0.Selected(1) = True
ElseIf (KeyCode = vbKeyNumpad3) And ((Shift And acAltMask) <> 0) Then
KeyCode = 0
Me!Liste0.Selected(2) = True
End If
   
End Sub
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
RE: Keypress İle Listedeki İstediğimiz Kayda Gitmek - Yazar: ozanakkaya - 30/04/2020, 11:50
Task