方法: アプリケーションを起動してキーストロークを送る ‐ Visual Basic

この例では、Shell メソッドを使用してメモ帳アプリケーションを起動した後、My.Computer.Keyboard.SendKeys メソッドを使用してキーストロークを送信することで、文を印刷します。

Dim ProcID As Integer
' Start the Notepad application, and store the process id.
ProcID = Shell("NOTEPAD.EXE", AppWinStyle.NormalFocus)
' Activate the Notepad application.
AppActivate(ProcID)
' Send the keystrokes to the Notepad application.
My.Computer.Keyboard.SendKeys("I ", True)
My.Computer.Keyboard.SendKeys("♥", True)
My.Computer.Keyboard.SendKeys(" Visual Basic!", True)
' The sentence I ♥ Visual Basic! is printed on Notepad.

信頼性の高いプログラミング

要求されたプロセス ID のアプリケーションが見つからない場合には、ArgumentException 例外が発生します。

.NET Framework のセキュリティ

Shell 関数の呼び出しには完全な信頼が必要です (SecurityException クラス)。

関連項目