Micro Focus QTP (UFT) Forums
how to use keyboard "Space' using qtp - Printable Version

+- Micro Focus QTP (UFT) Forums (https://www.learnqtp.com/forums)
+-- Forum: Micro Focus UFT (earlier known as QTP) (https://www.learnqtp.com/forums/Forum-Micro-Focus-UFT-earlier-known-as-QTP)
+--- Forum: UFT / QTP Beginners (https://www.learnqtp.com/forums/Forum-UFT-QTP-Beginners)
+--- Thread: how to use keyboard "Space' using qtp (/Thread-how-to-use-keyboard-Space-using-qtp)



how to use keyboard "Space' using qtp - Naresh - 05-14-2015

Hi All,

How can i use space functionality in UFT


RE: how to use keyboard "Space' using qtp - babu123 - 05-20-2015

Code:
WshShell=Createobject("Scripting.shell")
WshShell.SendKeys "{SPACE}" or WshShell.SendKeys " "



RE: how to use keyboard "Space' using qtp - venkatesh9032 - 06-11-2015

Use shell scripting by creating objects hope it works.

Code:
WshShell.SendKeys "{SPACE}"
WshShell.SendKeys "{ENTER}"
WshShell.SendKeys "{DOWN}"