Guest ImpactMan Posted October 31, 2008 Report Posted October 31, 2008 (edited) Hello! I'm trying to develop one application for pocket pc with Visual Studio 2008. Now, I'm having troubles, cause I want to make a button of my application correspond to one hardware key! For example, I want software button1 makes the same that dpad UP key! Not getting any results! I've already try to search it on google and forums but, not helping! So, if anyone here could help, I will be glad! I've made a simple example to make me understanding... see the picture below: __________________________________________________ __________________________________________________ __ Here is my try: Public Class Form1 Private Sub ExitButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitButton.Click 'Bye! Application.Exit() End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles UpButton.Click 'Up !!!!!!CODE HELP PLEASE!!!!!!! End Sub __________________________________________________ __________________________________________________ __ Any one there could code one button to me please??? Regards Edited October 31, 2008 by ImpactMan
Guest DaveShaw Posted November 21, 2008 Report Posted November 21, 2008 Why not make "UP" the same as Button1 Like so Public Class Form1 Private Sub Form1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown If (e.KeyCode = System.Windows.Forms.Keys.Up) Then 'UP Button1_Click(sender, e) End If If (e.KeyCode = System.Windows.Forms.Keys.Down) Then 'Down End If If (e.KeyCode = System.Windows.Forms.Keys.Left) Then 'Left End If If (e.KeyCode = System.Windows.Forms.Keys.Right) Then 'Right End If If (e.KeyCode = System.Windows.Forms.Keys.Enter) Then 'Enter End If End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click MessageBox.Show("Pressed Up") End Sub End Class Ta Dave
Guest mrlacey Posted November 24, 2008 Report Posted November 24, 2008 Have you looked at: http://msdn.microsoft.com/en-us/library/mi...warebutton.aspx
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now