Why it doesn't work when I quite hold of button1
Private Sub Button1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Button1.KeyUp
MsgBox("Button1 is up")
End Sub
Thanks
Why it doesn't work when I quite hold of button1
Private Sub Button1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Button1.KeyUp
MsgBox("Button1 is up")
End Sub
Thanks
Button1_KeyUp
Al6200
Adam Christopher
Private
Sub Button1_KeyUp(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Button1.KeyUp MessageBox.Show("Enter key just released Button 1") End Sub
Private Sub Button1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Button1.MouseUp MessageBox.Show("Mouse just released Button 1") End Subakram badr
Sarosh79
Thank you, DMan1 . It works.
Private
Sub Button1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Button1.MouseUpMsgBox(
"Button1 is up") End Subchialee