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
Posts: 2,742
Threads: 115
Joined: Jun 2006
Reputation:
0
And you need help with what?
Quote:Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?
It doesent work, When I click on the game screen nothing appears, no errors either
Posts: 2,742
Threads: 115
Joined: Jun 2006
Reputation:
0
Private Sub picScreen_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
LblMenu.Show
End If
End Sub
Quote:Robin:
Why aren't maps and shit loaded up in a dynamic array?
Jacob:
the 4 people that know how are lazy
Robin:
Who are those 4 people?
Jacob:
um
you, me, and 2 others?
Still doesent work, is there a certain place I should put this code?
Dragoons Master
Unregistered
LblMenu.Show is not valid... I think you meant LblMenu.Visible = True
I tried but then nothing happened
Private Sub Object_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
LblMenu.visible = 1
End If
End Sub
ahh ok, thanks for the explination. 8)
Have a fix?