Hello, i've just got a quick question to do with the Timer Control.
I haven't been able to get it to work for a while.
I just don't know how to use it, i've looked at the Microsoft help website but that didn't help me. could anyone explain how to use it and code it. Or could someone add a timer to this code, so that say 1 letter appears every 2 seconds.
VB Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim text As System.Diagnostics.Process Text = System.Diagnostics.Process.Start("C:\WINDOWS\Notepad.exe") text.WaitForInputIdle() AppActivate(text.Id) SendKeys.Send("Hello, this is just a test .") End Sub
Thanks




Reply With Quote