Hi, I am making a game (a shooting game)
i want the mouse to be a crosshair.
I have tried making the picturebox follow the mouse like this:
but the crosshair does not follow the mouse exactly (the crosshair is about 4cm away from cursor???)
Anyone got any Ideas?
i want the mouse to be a crosshair.
I have tried making the picturebox follow the mouse like this:
Code:
Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
PictureBox1.Location = MousePosition
End Sub
but the crosshair does not follow the mouse exactly (the crosshair is about 4cm away from cursor???)
Anyone got any Ideas?
Last edited: