Page 1 of 1
					
				A mouse Clicks per minute counter I made in VB.
				Posted: Tue Jun 24, 2008 8:25 am
				by froggyboy604
				click the click button as fast of you can till the button disapears after 60 seconds.
Download link: 
http://www.mxproject.com/freehost/frogg ... ounter.zip
Size: 8 KB
I can get 250 mouse click on the click button before the click button disapears.
If I just hold down enter, I get 1527 clicks.
 
			 
			
					
				
				Posted: Fri Jun 27, 2008 12:37 pm
				by SetoTK
				the mouse click window doesn't show up, it's just a black box,
			 
			
					
				
				Posted: Fri Jun 27, 2008 5:26 pm
				by froggyboy604
				Odd, it works for me. I van see the mouse click button.
			 
			
					
				
				Posted: Fri Jun 27, 2008 7:42 pm
				by SetoTK
				i see the 'click' but there is no counter
			 
			
					
				
				Posted: Sat Jun 28, 2008 1:56 am
				by froggyboy604
				http://www.mxproject.com/freehost/frogg ... ounter.zip
Ah, I think you probably downloaded my early black version that had a counter with a black background and white font. 
Here is a different version with a purple background which I tested and it works.
code for counter. 
Public Class Form1
    Private Sub xCounterButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles xCounterButton.Click
        Static counter As Integer
        counter = counter + 1
        Me.xCounterLabel.Text = counter
    End Sub
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Me.xCounterButton.Visible = False
    End Sub
End Class