Hello
Here is the shell script i have (vbs)
how do i run it in a module make function out of it???
Thanks
Here is the shell script i have (vbs)
how do i run it in a module make function out of it???
Code:
Set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Sleep 10
WshShell.AppActivate "Microsoft Office Outlook"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{ENTER}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "{ENTER}"
Thanks