Private Sub Form1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.MouseHover PictureBox1.Left = PictureBox1.Left + 50 End Sub
i made this my self from looking at this code put mouse hover so when the mouse moves the picture moves i did this for a maze game i made to move the blockage i move my mouse alot
omg that e.keycode dont work lol
assassin132132 3 days ago
Qui est-ce que tu faire un .gif?
GutierrezJohnathan 1 week ago
Exactly what i needed! Thanks kid.
iHurricaneA7x 1 month ago
didn't work. Not one bit.
ninjakicker45 4 months ago
Up:
picturebox1.top = picturebox1.top - 5
Down:
picturebox1.top = picturebox1.top + 5
ARPGR 6 months ago 4
How about up and down
ComputerTricks100000 6 months ago
Private Sub Form1_MouseHover(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.MouseHover PictureBox1.Left = PictureBox1.Left + 50 End Sub
i made this my self from looking at this code put mouse hover so when the mouse moves the picture moves i did this for a maze game i made to move the blockage i move my mouse alot
toxicHACKERv1ruz 6 months ago
can u tell me how to move objects like icons on desctop???? cause i want make some os... and move icons of desctop
petar256 8 months ago
up and down script?
Gumbo777productions 1 year ago
here is a easier way of doing this code:
select case e.keydown
case keycode.up
player.top-=5
case keycode.down
player.top +=5
end select
:
hope this helped you
CODEINGWITHALEX 1 year ago
what I must do to go up or down with the Picturebox ?
SamYDe1992 1 year ago