Hey guys I have a wierd issue that im not sure how to fix. If a users starts timer1 it will open form that has a timer and continue allowing them to choose other options.
BUT
the sendkeys do not go through until the timer is up and the form closes.
What am I missing with this?
Examples of code below...
Case Is = "hello"
SendKeys.SendWait("{ENTER}")
Sleep(75)
SendKeys.Send("hello")
Sleep(75)
SendKeys.SendWait("{ENTER}")
Case Is = "timer1"
If t1 Is Nothing OrElse timer1.IsDisposed Then
t1 = New timer1
t1.Show()
Sleep(75)
Else
t1.Show()
Sleep(75)
End If