How To

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jacek Jurkowski

    How To

    Place a Char in the Keyboard Buffer?
  • Marc Gravell

    #2
    Re: How To

    Depending on your platform and needs, SendKeys may suit...

    static void Main()
    {
    SendKeys.SendWa it("abc");
    Console.ReadLin e();
    }

    You may need to ensure that the right form / control has keyboard focus
    first, though!

    Marc


    Comment

    Working...