Jump to content

Button assign HELP! (VisualStudio2008)


Guest ImpactMan

Recommended Posts

Guest ImpactMan

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:

post-431635-1225415791_thumb.jpg

__________________________________________________ __________________________________________________ __

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 by ImpactMan
Link to comment
Share on other sites

  • 3 weeks later...
Guest DaveShaw

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

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.