[HELP]Fast Mouse Click[Solved]
can i make a clicking program with VB
i want it to make my mouse click really fast when i hold it down and not click when i dont hold it down
i also want it to work when im not playing a game
does anyone have the code? i just started to learn VB in school

[php]Private Declare Sub mouse_event Lib "user32" (ByVal dvflags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cbuttons As Long, ByVal dvextrainfo As Long) Private Const mousclickup = 4 Private Const mousclickdown = 2
mouse_event(mousclickdown, 0, 0, 0, 0)
mouse_event(mousclickup, 0, 0, 0, 0) [/php]
I guess that should work, and add it to a timer.