Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Timer1.Start()
  2.         If GetAsyncKeyState(Keys.NumPad1) Then
  3.             SendKeys.Send("T")
  4.             SendKeys.Send(TextBox1.Text)
  5.             SendKeys.Send("{Enter}")
  6.             Timer1.Stop()
  7.         End If
  8.         If GetAsyncKeyState(Keys.NumPad2) Then
  9.             SendKeys.Send("T")
  10.             SendKeys.Send(TextBox2.Text)
  11.             SendKeys.Send("{Enter}")
  12.             Timer1.Stop()
  13.         End If
  14.         If GetAsyncKeyState(Keys.NumPad3) Then
  15.             SendKeys.Send("T")
  16.             SendKeys.Send(TextBox3.Text)
  17.             SendKeys.Send("{Enter}")
  18.             Timer1.Stop()
  19.         End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement