I am trying to make a shootem game with vb6. How do i make
it so that where ever the mouse pointer is, the crosshair image (.gif) follows, without having to drag it.
thanx
Printable View
I am trying to make a shootem game with vb6. How do i make
it so that where ever the mouse pointer is, the crosshair image (.gif) follows, without having to drag it.
thanx
why not just change your mousepointer to a crosshair?
of course i would just put it in the mouseover event of the area your doing the shooting inCode:Private Sub Form_Load()
Screen.MousePointer = vbCrosshair
End Sub
if you want your own mouse cursor convert the gif to a .ico file (icon) and then change the icon of the mouse cursor
Good Luck
~Chenko