[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.
/continuation
put the timer with the interval that u want
1000 = 1 sec...
/Continuation
Make it look good release, Give credit the people above me and your done
Thanks you guys
Thanks you guys it helped now im workin on a good gui i dont have much time on my hands so idk when ill release it