

ID: 339
Viewed: 3507
Added: Aug 19, 2002
Version:



Snippet uploaded by: snippet
Written By: Unknown
Demo: Sorry, no demo



Thank you for your vote. Please wait...
It appears you already voted for this snippet
It appears your vote value was empty


Now you can move the form in all directions. When you press the ESC key, the program will exit.
Highlight all by clicking in box
<!---Declaration--->
Dim blnKeys(256) As Boolean ' buffer for key status
Highlight All
<!---Code--->
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
blnKeys(KeyCode) = True' set that the key is pressed
End Sub
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
blnKeys(KeyCode) = False' set that the key is released
End Sub
Public Sub RunMain()
Do
' Check for pressed keys and move form accordingly
If blnKeys(vbKeyUp) Then Me.Top = Me.Top - 20
If blnKeys(vbKeyDown) Then Me.Top = Me.Top + 20
If blnKeys(vbKeyLeft) Then Me.Left = Me.Left - 20
If blnKeys(vbKeyRight) Then Me.Left = Me.Left + 20
DoEvents
Loop Until blnKeys(vbKeyEscape) ' loop until you press ESC
Unload Me
End Sub
Private Sub Form_Load()
Me.Show
Call RunMain
End Sub
;
No Comments to show


Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.
Adding your comment. Please wait...
Thanks for adding your comment!. After further review it will be added.
There was a problem adding your comment. Please try again.
Please complete all the fields in the form before sending.