Author Topic: Repeat Button  (Read 1599 times)

Phrog30

  • Guest
Repeat Button
« on: June 17, 2017, 08:31:05 PM »
Attached is simple repeat button.  I found it useful on my trends when I wanted to hold the button down and have it repeat.

Use the mouse down event,
Code: [Select]
Private Sub btn_Test_MouseDown(sender As Object, e As EventArgs) Handles btn_Test.MouseDown

        'Do stuff

    End Sub