Accepting text from keyboard without displaying it on screen.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • J. Campbell

    Accepting text from keyboard without displaying it on screen.

    Is this possible using standard c++?

    Thanks
  • Victor Bazarov

    #2
    Re: Accepting text from keyboard without displaying it on screen.

    "J. Campbell" <mango_maniac@y ahoo.com> wrote...[color=blue]
    > Is this possible using standard c++?[/color]

    Nope. There is no "keyboard" or "screen" concepts
    in the Standard C++. You would have to use some kind
    of OS-specific means (like responding to events or
    installing some interrupt handler or...)

    Victor


    Comment

    Working...