Wrox Home  
Search P2P Archive for: Go

  Return to Index  

access thread: Disable Keys Combination


Message #1 by "Glen Yagami" <glenyagami@y...> on Fri, 29 Nov 2002 05:13:33
I want to know how to disable keys combination such as Ctrl-Home or Ctrl-
End to stop record navigation in form mode. I've tried many times by using 
every possibilities I know with no success.
So, if any of you know the answer, please let me know.

Thanks.
Glen
Message #2 by "Wesley Kendrick" <wez.k@n...> on Fri, 29 Nov 2002 17:38:18 -0000
Hi Glen

Insert this into the KeyDown event of your control

If KeyCode = 35 Or KeyCode = 36 Then  (do whatever you like)

35 is Ctrl/End and 36 is Ctrl/Home

Hope this helps.

Regards, Wesley Kendrick



----- Original Message -----
From: "Glen Yagami" <glenyagami@y...>
To: "Access" <access@p...>
Sent: Friday, November 29, 2002 5:13 AM
Subject: [access] Disable Keys Combination


> I want to know how to disable keys combination such as Ctrl-Home or Ctrl-
> End to stop record navigation in form mode. I've tried many times by using
> every possibilities I know with no success.
> So, if any of you know the answer, please let me know.
>
> Thanks.
> Glen
>


  Return to Index