To send special caracters follow these instructions:

Backspace	{BACKSPACE} or {BS} or {BKSP}	
Break		{BREAK}
Caps Lock	{CAPSLOCK}	
Clear		{CLEAR}
Del		{DELETE} or {DEL}	
Down Arrow	{DOWN}
End		{END}	
Enter		{ENTER} or ~
Esc		{ESCAPE} or {ESC}	
Help		{HELP}
Home		{HOME}	
Ins		{INSERT}
Left Arrow	{LEFT}	
Num Lock	{NUMLOCK}
Page Down	{PGDN}	
Page Up	{PGUP}
Print Screen	{PRTSC}	
Right Arrow	{RIGHT}
Scroll Lock	{SCROLLLOCK}	
Tab		{TAB}
Up Arrow	{UP}	
F1  {F1}
F2  {F2}
..  ....

To specify keys combined with any 
combination of Shift, Ctrl, and Alt keys, 
precede the regular key code with 
one or more of the following codes:

Key     Code

Shift	+
Control	^
Alt	%



To specify that Shift, Ctrl, and/or Alt 
should be held down while several other 
keys are pressed, enclose the keys' code
in parentheses.  For example, to have the
Shift key held down while E and C are pressed,
 use "+(EC)".  To have Shift held down 
while E is pressed, followed by C being 
pressed without Shift, use "+EC".
To specify repeating keys, use the form
{key number};  you must put a space between 
key and number.  For example, {LEFT 42} means
 press the Left Arrow key 42 times; {h 10} means 
press h 10 times.



Note: SendKeys can't send keystrokes to an 
application that is not designed to run in 
Microsoft Windows.  Sendkeys also can't send 
the Print Screen (PRTSC) key to any application.

(All the above text was captured from the 
 VB Helpfile.)
