01-08-2007, 10:17 PM
Tryin to get a label to open up by right clicking anywhere whil playing the game, heres what I have so far...
Private Sub Object_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
LblMenu.Show
End If
End Sub
Private Sub Object_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
LblMenu.Show
End If
End Sub