procedure PressKey(aKeyCode: integer);
==== Parameters ====
* **//aKeyCode//**
* //type:// integer
* //functions:// key code
===== Examples =====
-//Emulate pressing the "Enter"
PressKey(13);
-//Emulate pressing the "Tab"
PressKey(9);