Results 1 to 3 of 3

Thread: [RESOLVED] HowTo Make [ My.Computer.Keyboard.SendKeys("X") ] X2 in the same time

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Aug 2014
    Posts
    90

    Resolved [RESOLVED] HowTo Make [ My.Computer.Keyboard.SendKeys("X") ] X2 in the same time

    Hey guys,

    I need to make things like CTRL+A etc.. so i need to do
    My.Computer.Keyboard.SendKeys("{CTRL}")
    'and
    My.Computer.Keyboard.SendKeys("A")
    in the same time, so someone know how i'm doing it?

  2. #2
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Location
    South Louisiana
    Posts
    11,754

    Re: HowTo Make [ My.Computer.Keyboard.SendKeys("X") ] X2 in the same time

    Because it's Control + A then try this:
    Code:
    SendKeys.Send("^(A)")
    That doesn't just apply to Control + A, it could be Control + {any key}
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | Code Tags | Sword of Fury - Jameram

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Aug 2014
    Posts
    90

    Re: HowTo Make [ My.Computer.Keyboard.SendKeys("X") ] X2 in the same time

    Cool Thank you dday9

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width