Here's the code I'm using:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Enabled = True
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)...
I don't think that's what I'm wanting to accomplish. I'm wanting it to do the basics by pressing f4 to start and f5 to stop, or whichever keys I choose as the default hotkeys. That's basically where I'm stuck at.
I am making my own personal auto typer. I have it all completed up to it spamming and stopping/starting when clicking the stop and go button. However, I am not understanding adding a hotekeys feature. I've looked at the basics and I've tried writing one out but it doesn't work what-so-ever.
Can...