Forum Discussion

ray_mosley's avatar
ray_mosley
Frequent Contributor
10 years ago

How to enter special key sequence in VBScript

I have a window object that pops up another window whenever CTRL+Shift+F12 is entered.  This works as designed manually, but I cannot find the magic sequence to reporduce it from my code.  Any sugges...
  • ray_mosley's avatar
    10 years ago

    That was my first attempt several days ago - it recorded but did not play back.

     

    What I finally got to work today was:

        obj.Keys("[Hold]^+[F12]{Release]")     ' Press Ctrl + Shift + F12

    Now I am on to the next problem...