uhm. im new to visual basic 6. im making a maze program, ones like those that pop up a scary picture or something. im having a bit of a trouble with calling a sub thing.im not really sure if thats what you call it.
program runs this way, as i run it, theres a start button that triggers a timer for the game. the paths for the mouse move, i used labels. if the mouse runs off a label and hits the exact form, the game will end or the player looses. but my problem is that i want to trigger the mousemove event right after i have clicked the start button that my game wont say game over right after i run it.
response would be really much appreciated.
i have this already :
Private Sub Command1_Click()
Label10.Visible = True -------------->> after this form_mousemove must perform.
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)------------------------->> this shouldn't perform upon running. it will only perform after command1_click()
MsgBox " GAME OVER!"
End Sub