'My.Computer.Keyboard.SendKeys("보낼 문자", True)
계산기켜고 계산기에서 "55*3=" 값 보내기
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim ProcID As Integer ' Start the Calculator application, and store the process id.
ProcID = Shell("CALC.EXE", AppWinStyle.NormalFocus) ' Activate the Calculator
System.Threading.Thread.Sleep(1000)
AppActivate(ProcID)
My.Computer.Keyboard.SendKeys("55", True)
My.Computer.Keyboard.SendKeys("*", True)
My.Computer.Keyboard.SendKeys("3", True)
My.Computer.Keyboard.SendKeys("=", True) ' The result is 22 * 44 = 968.
End Sub
End Class
'프로그래밍언어 > VB.NET' 카테고리의 다른 글
WebGL 구글에서 보기 (0) | 2013.03.29 |
---|---|
윈도우 버전별 기본 지원하는 닷넷프레임워크버전 (0) | 2013.03.24 |
클립보드의 사진 불러오기 (0) | 2013.03.04 |
핸들연결 (0) | 2013.03.03 |
트레이아이콘Notifyicon 사용하기(폼종료시) (0) | 2013.03.02 |