I'm making a program which will simulate a keypress after a spesific number of times. I'have tried SendKeys but it doesn't work. The problem here (I think) is than SendKeys doesn't actually "press" the key, but only sends the Ascii value back. Am I right? How can I accomplish this?
Try this:
Before you start set: label1.visible = false
Timer1.enabled = false
Private sub Picture1_Click()
Label1.visible = true
Timer1.enabled = true
end sub
Private sub Timer1.Timer()
Label1.visible = false
Timer1.enables = false
end sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.