-
avi's
tryin to make a program that has an .avi animation and responds to keyboard commands.
sourcecode is pretty straightforward:
Private Sub Form_Load()
Animation1.Open "c:\movies\movie.avi"
End Sub
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
MsgBox "key pressed"
End Sub
the problem is that it simply stops listening to keyboard commands after the .avi is loaded (no message box appears when a key is pressed). please help
-
hey cool this is your first post. when you ask these kinds of questions here, you usually include some code.